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 jaraco
Recipients jaraco
Date 2016-11-20.15:57:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479657458.82.0.602591493222.issue28752@psf.upfronthosting.co.za>
In-reply-to
Content
Pickle still works, so pickle must be relying on a different protocol for serialization.

$ python
Python 3.6.0b3 (v3.6.0b3:8345e066c0ed, Oct 31 2016, 18:05:23) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pickle
>>> import datetime
>>> pickle.loads(pickle.dumps(datetime.datetime.now()))
datetime.datetime(2016, 11, 20, 10, 56, 43, 264436)
History
Date User Action Args
2016-11-20 15:57:38jaracosetrecipients: + jaraco
2016-11-20 15:57:38jaracosetmessageid: <1479657458.82.0.602591493222.issue28752@psf.upfronthosting.co.za>
2016-11-20 15:57:38jaracolinkissue28752 messages
2016-11-20 15:57:38jaracocreate