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 miwa
Recipients miwa
Date 2009-02-15.11:26:11
SpamBayes Score 5.3495275e-10
Marked as misclassified No
Message-id <1234697173.89.0.607307713692.issue5273@psf.upfronthosting.co.za>
In-reply-to
Content
In unicode path Python 3.0.1 crashes when importing compiled module.
This does not happen on Python 3.0, new in 3.0.1.

Detailed Situation:
OS: win2000
current pathname contains Japanese characters.
./a.py contains only a statement "import b".
./b.py is empty.
> python a.py
(nothing is happen but b.pyc is created)
> python a.py
Traceback (most recent call last):
  File "a.py", line 1, in <module>
    import b
UnicodeDecodeError: 'utf8' codec can't decode byte 0x82 in position 3:
unexpected code byte
History
Date User Action Args
2009-02-15 11:26:14miwasetrecipients: + miwa
2009-02-15 11:26:13miwasetmessageid: <1234697173.89.0.607307713692.issue5273@psf.upfronthosting.co.za>
2009-02-15 11:26:12miwalinkissue5273 messages
2009-02-15 11:26:11miwacreate