[issue10952] Don't normalize module names to NFKC?

STINNER Victor report at bugs.python.org
Thu Jan 20 03:21:42 CET 2011


STINNER Victor <victor.stinner at 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 <report at bugs.python.org>
<http://bugs.python.org/issue10952>
_______________________________________


More information about the Python-bugs-list mailing list