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.

作者 vstinner
收信人 amaury.forgeotdarc, loewis, ocean-city, vstinner
日期 2011-06-16.23:52:09
SpamBayes Score 0.27605456
Marked as misclassified
Message-id <1308268329.75.0.259268639768.issue12281@psf.upfronthosting.co.za>
In-reply-to
内容
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'),
历史
日期 用户 动作 参数
2011-06-16 23:52:09vstinner修改recipients: + vstinner, loewis, amaury.forgeotdarc, ocean-city
2011-06-16 23:52:09vstinner修改messageid: <1308268329.75.0.259268639768.issue12281@psf.upfronthosting.co.za>
2011-06-16 23:52:09vstinner链接issue12281 messages
2011-06-16 23:52:09vstinner创建