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 hyeshik.chang
Recipients
Date 2004-11-07.08:19:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Source code encoding is ignored in IDLE console
sessions currently.  To allow to use encodings other
than Latin-1, encoding marker must be added before
passing it to tokenizers. (see the attached patch)

current behavior:

>>> u'\ '
u'\xc7\xd1\xb1\xdb'

this must be like ...

>>> u'\ '
u'\ud55c\uae00'
History
Date User Action Args
2007-08-23 15:40:33adminlinkissue1061803 messages
2007-08-23 15:40:33admincreate