STINNER Victor <victor.stin...@haypocalc.com> added the comment:

New problem: if the parser doesn't normalize module names on import, it does 
still normalize module names on other instructions.

Example: "import \xB5Torrent; del \xB5Torrent" raises an error on del because 
the parser normalized del identifier (the second module name) => "import 
\xB5Torrent; del \u03BCTorrent".

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10952>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to