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

2009-05-24 Thread Collin Winter
Changes by Collin Winter : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

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

2009-04-28 Thread Georg Brandl
Georg Brandl 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

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

2009-04-28 Thread Jelle
Changes by Jelle : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

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

2009-04-28 Thread Jelle
New submission from Jelle : 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.dump