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 mawbid
Recipients georg.brandl, mawbid
Date 2008-05-27.15:38:11
SpamBayes Score 0.015870148
Marked as misclassified No
Message-id <1211902695.6.0.958731947697.issue2980@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not sure if this is a functionality or documentation bug.

The docs say in section 13.1.2, Data stream format
(http://docs.python.org/lib/node315.html):
"By default, the pickle data format uses a printable ASCII representation."

I took that to mean that only ASCII characters ever appear in the pickle
output, but that's not true.

>>> print [ord(c) for c in pickle.dumps(u'á')]
[86, 225, 10, 112, 48, 10, 46]
History
Date User Action Args
2008-05-27 15:38:16mawbidsetspambayes_score: 0.0158701 -> 0.015870148
recipients: + mawbid, georg.brandl
2008-05-27 15:38:15mawbidsetspambayes_score: 0.0158701 -> 0.0158701
messageid: <1211902695.6.0.958731947697.issue2980@psf.upfronthosting.co.za>
2008-05-27 15:38:13mawbidlinkissue2980 messages
2008-05-27 15:38:11mawbidcreate