This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients alexandre.vassalotti, mkiever, pitrou
Date 2009-06-03.20:54:41
SpamBayes Score 1.3416469e-05
Marked as misclassified No
Message-id <1244062483.54.0.742376729485.issue6137@psf.upfronthosting.co.za>
In-reply-to
Content
Unpickling e.g. StringIO objects doesn't seem to work:

>>> s = pickle.load(open("stringio.pickle", "rb"))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/antoine/py3k/picklecompat-6137/Lib/pickle.py", line 1351,
in load
    encoding=encoding, errors=errors).load()
AttributeError: '_io.BytesIO' object has no attribute '__dict__'
>>>
History
Date User Action Args
2009-06-03 20:54:44pitrousetrecipients: + pitrou, mkiever, alexandre.vassalotti
2009-06-03 20:54:43pitrousetmessageid: <1244062483.54.0.742376729485.issue6137@psf.upfronthosting.co.za>
2009-06-03 20:54:42pitroulinkissue6137 messages
2009-06-03 20:54:41pitroucreate