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 nneonneo
Recipients akuchling, amaury.forgeotdarc, georg.brandl, jimjjewett, mark, moreati, mrabarnett, nneonneo, pitrou, rsc, timehorse
Date 2009-02-06.00:06:03
SpamBayes Score 5.7600946e-06
Marked as misclassified No
Message-id <1233878765.89.0.438235798747.issue2636@psf.upfronthosting.co.za>
In-reply-to
Content
In fact, it works for Python 2.4, 2.5, 2.6 and 3.0 from my rather
limited testing.

In Python 2.4:
>>> u"\N{LATIN CAPITAL LETTER A}"
u'A'
>>> u"\N{MUSICAL SYMBOL DOUBLE SHARP}"
u'\U0001d12a'

In Python 3.0:
>>> "\N{LATIN CAPITAL LETTER A}"
'A'
>>> ord("\N{MUSICAL SYMBOL DOUBLE SHARP}")
119082
History
Date User Action Args
2009-02-06 00:06:06nneonneosetrecipients: + nneonneo, akuchling, georg.brandl, jimjjewett, amaury.forgeotdarc, pitrou, rsc, timehorse, mark, mrabarnett, moreati
2009-02-06 00:06:05nneonneosetmessageid: <1233878765.89.0.438235798747.issue2636@psf.upfronthosting.co.za>
2009-02-06 00:06:03nneonneolinkissue2636 messages
2009-02-06 00:06:03nneonneocreate