➜

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.

作者 ArcRiley
收信人 ArcRiley
日期 2009-10-03.04:09:16
SpamBayes Score 0.03308018
Marked as misclassified 否
Message-id <1254542956.92.0.539566996209.issue7045@psf.upfronthosting.co.za>
In-reply-to
内容
While t.py only bugs on 3.1, the following happens with 3.0 as well:

>>> line = '𐑑𐑧𐑕𐑑𐑦𐑙'
>>> first = '𐑑'
>>> first
'𐑑'
>>> line[0]
'\ud801'
>>> line[0] == first
False

And with 2.6:
>>> line = u'𐑑𐑧𐑕𐑑𐑦𐑙'
>>> first = u'𐑑'
>>> first
u'\ud801\udc51'
历史
日期 用户 动作 参数
2009-10-03 04:09:17ArcRiley修改recipients: + ArcRiley
2009-10-03 04:09:16ArcRiley修改messageid: <1254542956.92.0.539566996209.issue7045@psf.upfronthosting.co.za>
2009-10-03 04:09:16ArcRiley链接issue7045 messages
2009-10-03 04:09:16ArcRiley创建