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 donmez
Recipients amaury.forgeotdarc, donmez, gvanrossum, loewis
Date 2007-12-19.22:56:23
SpamBayes Score 0.0011145875
Marked as misclassified No
Message-id <1198104983.32.0.232357339312.issue1609@psf.upfronthosting.co.za>
In-reply-to
Content
Ok that was because we had modified default encoding in Lib/site.py to
be utf-8. Sorry!

The only problem left is last 2 conversions in test.py gives wrong
results when wctypes is disabled, that is :

print u"\u0069".upper()

should give \u0130 (LATIN CAPITAL LETTER I WITH DOT ABOVE)

print u"\u0049".lower()

should give \u0131 (LATIN SMALL LETTER DOTLESS I)

These transformations work fine with python2.5 when
--with-wctype-functions is used.
History
Date User Action Args
2007-12-19 22:56:23donmezsetspambayes_score: 0.00111459 -> 0.0011145875
recipients: + donmez, gvanrossum, loewis, amaury.forgeotdarc
2007-12-19 22:56:23donmezsetspambayes_score: 0.00111459 -> 0.00111459
messageid: <1198104983.32.0.232357339312.issue1609@psf.upfronthosting.co.za>
2007-12-19 22:56:23donmezlinkissue1609 messages
2007-12-19 22:56:23donmezcreate