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 ArcRiley
Recipients ArcRiley
Date 2009-10-03.04:09:16
SpamBayes Score 0.03308018
Marked as misclassified No
Message-id <1254542956.92.0.539566996209.issue7045@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2009-10-03 04:09:17ArcRileysetrecipients: + ArcRiley
2009-10-03 04:09:16ArcRileysetmessageid: <1254542956.92.0.539566996209.issue7045@psf.upfronthosting.co.za>
2009-10-03 04:09:16ArcRileylinkissue7045 messages
2009-10-03 04:09:16ArcRileycreate