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 vstinner
Recipients amaury.forgeotdarc, loewis, ocean-city, vstinner
Date 2011-06-16.23:52:09
SpamBayes Score 0.27605456
Marked as misclassified No
Message-id <1308268329.75.0.259268639768.issue12281@psf.upfronthosting.co.za>
In-reply-to
Content
TODO: add more tests

CP_UTF8:

        if self.vista_or_later:
            tests.append(('\udc80', 'strict', None))
            tests.append(('\udc80', 'ignore', b''))
            tests.append(('\udc80', 'replace', b'\xef\xbf\xbd'))
        else:
            tests.append(('\udc80', 'strict', b'\xed\xb2\x80'))

cp1252:

            ('\u0141', 'strict', None),
            ('\u0141', 'ignore', b''),
            ('\u0141', 'replace', b'L'),
History
Date User Action Args
2011-06-16 23:52:09vstinnersetrecipients: + vstinner, loewis, amaury.forgeotdarc, ocean-city
2011-06-16 23:52:09vstinnersetmessageid: <1308268329.75.0.259268639768.issue12281@psf.upfronthosting.co.za>
2011-06-16 23:52:09vstinnerlinkissue12281 messages
2011-06-16 23:52:09vstinnercreate