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 belopolsky
Recipients alexandre.vassalotti, belopolsky, fdrake, mark.dickinson, pitrou, vstinner
Date 2014-06-30.01:26:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I updated the patch.  Please note that it only includes python code, so you need to suppress _datetime acceleration to test:

>>> import sys
>>> sys.modules['_datetime'] = None
>>> from pickle import *
>>> from datetime import *
>>> dumps(timezone.utc)
b'\x80\x03cdatetime\n_utc\nq\x00.'
History
Date User Action Args
2014-06-30 01:26:54belopolskysetrecipients: + belopolsky, fdrake, mark.dickinson, pitrou, vstinner, alexandre.vassalotti
2014-06-30 01:26:54belopolskysetmessageid: <[email protected]>
2014-06-30 01:26:54belopolskylinkissue9051 messages
2014-06-30 01:26:53belopolskycreate