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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, gonegown, vstinner
Date 2010-06-26.12:56:20
SpamBayes Score 0.0831609
Marked as misclassified No
Message-id <1277556983.62.0.685644227822.issue8988@psf.upfronthosting.co.za>
In-reply-to
Content
> File "F:\1home\С\u201e\a.py", line 1, in <module>
> And what the hell is this u201e? That should have been a letter!

It's probably this symbol: http://www.eki.ee/letter/chardata.cgi?ucode=201e
but it has no representation in the console windows you are using; try "import sys; print(sys.stderr.encoding)" to print the code page used by your console.
In error messages, Python replaces unpritable characters with their "escaped" form: \uXXXX where XXXX is the character number.
History
Date User Action Args
2010-06-26 12:56:24amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, vstinner, gonegown
2010-06-26 12:56:23amaury.forgeotdarcsetmessageid: <1277556983.62.0.685644227822.issue8988@psf.upfronthosting.co.za>
2010-06-26 12:56:22amaury.forgeotdarclinkissue8988 messages
2010-06-26 12:56:20amaury.forgeotdarccreate