Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment: > 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. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8988> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com