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 Carl.Friedrich.Bolz
Recipients Carl.Friedrich.Bolz
Date 2007-11-13.10:53:08
SpamBayes Score 0.057111975
Marked as misclassified No
Message-id <1194951189.44.0.776453257411.issue1433@psf.upfronthosting.co.za>
In-reply-to
Content
Marshal does not round-trip unicode surrogate pairs for wide unicode-builds:

marshal.loads(marshal.dumps(u"\ud800\udc00")) == u'\U00010000'

This is very annoying, because the size of unicode constants differs
between when you run a module for the first time and subsequent runs
(because the later runs use the pyc file).
History
Date User Action Args
2007-11-13 10:53:09Carl.Friedrich.Bolzsetspambayes_score: 0.057112 -> 0.057111975
recipients: + Carl.Friedrich.Bolz
2007-11-13 10:53:09Carl.Friedrich.Bolzsetspambayes_score: 0.057112 -> 0.057112
messageid: <1194951189.44.0.776453257411.issue1433@psf.upfronthosting.co.za>
2007-11-13 10:53:09Carl.Friedrich.Bolzlinkissue1433 messages
2007-11-13 10:53:08Carl.Friedrich.Bolzcreate