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 dabeaz
Recipients dabeaz, mark.dickinson, r.david.murray, rhettinger
Date 2010-12-28.00:47:20
SpamBayes Score 0.00026676795
Marked as misclassified No
Message-id <1293497244.28.0.721033161003.issue10783@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, here's another one of my favorite examples:

>>> import struct
>>> struct.pack("s","\xf1")
b'\xc3'
>>> 

Not only does this not encode the correct value, it doesn't even encode the entire UTF-8 encoding (just the first byte of it).   Like I said, pity the poor bastard who puts something that in their code and they spend the whole day trying figure out where in the hell '\xf1' magically got turned into '\xc3'.
History
Date User Action Args
2010-12-28 00:47:24dabeazsetrecipients: + dabeaz, rhettinger, mark.dickinson, r.david.murray
2010-12-28 00:47:24dabeazsetmessageid: <1293497244.28.0.721033161003.issue10783@psf.upfronthosting.co.za>
2010-12-28 00:47:20dabeazlinkissue10783 messages
2010-12-28 00:47:20dabeazcreate