[issue5866] cPickle defect with tuples and different from pickle output

2009-05-24 Thread Collin Winter

Changes by Collin Winter coll...@gmail.com:


--
status: pending - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5866
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5866] cPickle defect with tuples and different from pickle output

2009-04-28 Thread Jelle

New submission from Jelle jelleroozenb...@gmail.com:

Python 2.5.2 (r252:60911, Oct  5 2008, 19:24:49) 
[GCC 4.3.2] on linux2

 print cPickle.dumps(('a','b')) == cPickle.dumps(('a', str('b')))
False
 print pickle.dumps(('a','b')) == pickle.dumps(('a', str('b')))
True
 print pickle.dumps(('a','b')) == cPickle.dumps(('a', str('b')))
False
 print pickle.dumps(('a','b')) == cPickle.dumps(('a', 'b'))
False

--
components: Library (Lib)
messages: 86741
nosy: jelle
severity: normal
status: open
title: cPickle defect with tuples and different from pickle output
versions: Python 2.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5866
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5866] cPickle defect with tuples and different from pickle output

2009-04-28 Thread Jelle

Changes by Jelle jelleroozenb...@gmail.com:


--
type:  - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5866
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5866] cPickle defect with tuples and different from pickle output

2009-04-28 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

As long as the different pickle outputs unpickle to the same objects
(which they do, since they only differ in pushing objects to the memo),
I can't see why this would be a bug.

--
nosy: +georg.brandl
resolution:  - wont fix
status: open - pending

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5866
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com