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 eli.bendersky
Recipients belopolsky, eli.bendersky, terry.reedy
Date 2010-07-21.03:27:06
SpamBayes Score 0.003031551
Marked as misclassified No
Message-id <1279682830.18.0.26027799009.issue9317@psf.upfronthosting.co.za>
In-reply-to
Content
Even the following simple test file:

----------------------
import pickle

data = {'a' : [1, 2, 3], 'b': 5}
ps = pickle.dumps(data)
newdata = pickle.loads(ps)
print(newdata)
----------------------

When traced generates an empty trace file for the pickle module, so it's not test_pickle trickery, but rather something to do with the pickle module itself. Will investigate this further.
History
Date User Action Args
2010-07-21 03:27:10eli.benderskysetrecipients: + eli.bendersky, terry.reedy, belopolsky
2010-07-21 03:27:10eli.benderskysetmessageid: <1279682830.18.0.26027799009.issue9317@psf.upfronthosting.co.za>
2010-07-21 03:27:06eli.benderskylinkissue9317 messages
2010-07-21 03:27:06eli.benderskycreate