[issue2295] cPickle corner case - docs or bug?

2013-12-01 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: We can't fix this without a working test case. Feel free to re-open if you find one. -- assignee: docs@python -> alexandre.vassalotti components: -Documentation resolution: -> works for me status: open -> closed versions: +Python 2.7 -Python 2.6

[issue2295] cPickle corner case - docs or bug?

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5 ___ Python tracker ___ _

[issue2295] cPickle corner case - docs or bug?

2008-06-16 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: I've noted that the problem goes away if I move the pymin/services/* directories (i.e., the packages in pymin/services) to another place (for example, a services directory in the root of the project). I still can't make a simple test to re

[issue2295] cPickle corner case - docs or bug?

2008-06-16 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: I'm having the same problem here. Error is: cPickle.PicklingError: Can't pickle qos.Device: it's not the same object as qos.Device If I use pickle module, it works fine. If I use cPickle module but with protocol=0, it works fine (protocol

[issue2295] cPickle corner case - docs or bug?

2008-05-09 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti <[EMAIL PROTECTED]>: -- nosy: +alexandre.vassalotti __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list maili

[issue2295] cPickle corner case - docs or bug?

2008-03-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The following "Works for me": >>> import imp, cPickle >>> mymod = imp.load_module('mymod', *imp.find_module('codecs')) >>> cPickle.dumps(mymod.Codec(), cPickle.HIGHEST_PROTOCOL) '\x80\x02(cmymod\nCodec\nq\x01o}q\x02b.' Do you have a sh

[issue2295] cPickle corner case - docs or bug?

2008-03-15 Thread Greg Kochanski
New submission from Greg Kochanski <[EMAIL PROTECTED]>: If you attempt to cPickle a class, cPickle checks that it can get the identical class by importing it. If that check fails, it reports: Traceback (most recent call last): ... "/usr/local/lib/python2.5/site-packages/newstem2-0.12.3-py2.5-lin