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.03:02:17
SpamBayes Score 1.2081629e-08
Marked as misclassified No
Message-id <1295492542.64.0.331169275347.issue10952@psf.upfronthosting.co.za>
In-reply-to
Content
> This won't be a problem if you make 
> "import \xB5Torrent" 
> behave as (...)
> "\u03BCTorrent =  __import__('\xB5Torrent')"

"import name" is compiled to "IMPORT_NAME(name); STORE_NAME(name)" bytecode instructions. So you proposed to compile it to "IMPORT_NAME(name); STORE_NAME(normalized_name)" if name is different than the normalized name. Ok, I think that it is possible.
History
Date User Action Args
2011-01-20 03:02:22vstinnersetrecipients: + vstinner, belopolsky
2011-01-20 03:02:22vstinnersetmessageid: <1295492542.64.0.331169275347.issue10952@psf.upfronthosting.co.za>
2011-01-20 03:02:17vstinnerlinkissue10952 messages
2011-01-20 03:02:17vstinnercreate