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 pitrou
Recipients pitrou
Date 2009-01-07.23:48:13
SpamBayes Score 0.023857128
Marked as misclassified No
Message-id <1231372096.73.0.0745033084101.issue4874@psf.upfronthosting.co.za>
In-reply-to
Content
The following function calls should raise a TypeError instead. Encoding
functions are fine (they only accept str).

>>> import codecs
>>> codecs.utf_8_decode('aa')
('aa', 2)
>>> codecs.utf_8_decode('éé')
('éé', 4)
>>> codecs.latin_1_decode('éé')
('éé', 4)
History
Date User Action Args
2009-01-07 23:48:17pitrousetrecipients: + pitrou
2009-01-07 23:48:16pitrousetmessageid: <1231372096.73.0.0745033084101.issue4874@psf.upfronthosting.co.za>
2009-01-07 23:48:15pitroulinkissue4874 messages
2009-01-07 23:48:14pitroucreate