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 BreamoreBoy
Recipients BreamoreBoy, alexandre.vassalotti, pitrou, serhiy.storchaka
Date 2015-02-27.16:41:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425055315.06.0.414800243403.issue22890@psf.upfronthosting.co.za>
In-reply-to
Content
Seems fine on Windows 8.1

c:\Users\Mark\Documents\MyPython>c:\cpython\PCbuild\amd64\python.exe
Python 3.5.0a1+ (default:344d57c521b9+, Feb 27 2015, 13:39:56) [MSC v.1800 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle, io
>>> pickle.dumps(io.StringIO('abc'), 2)
b'\x80\x02c_io\nStringIO\nq\x00)\x81q\x01(X\x03\x00\x00\x00abcq\x02X\x01\x00\x00\x00\nq\x03K\x00Ntq\x04b.'
>>> pickle.loads(b'\x80\x02c_io\nStringIO\nq\x00)\x81q\x01(X\x03\x00\x00\x00abcq\x02X\x01\x00\x00\x00\nq\x03K\x00Ntq\x04b.')
<_io.StringIO object at 0x0000004C6E604288>
>>>
History
Date User Action Args
2015-02-27 16:41:55BreamoreBoysetrecipients: + BreamoreBoy, pitrou, alexandre.vassalotti, serhiy.storchaka
2015-02-27 16:41:55BreamoreBoysetmessageid: <1425055315.06.0.414800243403.issue22890@psf.upfronthosting.co.za>
2015-02-27 16:41:55BreamoreBoylinkissue22890 messages
2015-02-27 16:41:54BreamoreBoycreate