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 vstinner
Recipients belopolsky, vstinner
Date 2011-01-20.02:21:38
SpamBayes Score 6.2650095e-08
Marked as misclassified No
Message-id <1295490102.85.0.965951587132.issue10952@psf.upfronthosting.co.za>
In-reply-to
Content
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".
History
Date User Action Args
2011-01-20 02:21:42vstinnersetrecipients: + vstinner, belopolsky
2011-01-20 02:21:42vstinnersetmessageid: <1295490102.85.0.965951587132.issue10952@psf.upfronthosting.co.za>
2011-01-20 02:21:38vstinnerlinkissue10952 messages
2011-01-20 02:21:38vstinnercreate