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 ingemar
Recipients ingemar, r.david.murray, terry.reedy, vstinner
Date 2011-01-08.06:37:31
SpamBayes Score 5.0882073e-07
Marked as misclassified No
Message-id <1294468652.65.0.199058526643.issue10828@psf.upfronthosting.co.za>
In-reply-to
Content
Terry: Thanks for the hint
In a pure ascii path I created files very similar to yours with Swedish "ä" instead of your katakana character.
I also got the same result.

a.py:
print ('something')

ä.py:
print ('other')

c.py:
# -*- coding: utf-8 -*-
import a
import ä

I ran the files with 3.2b2:
    
c:\Python32\python.exe a.py
something

c:\Python32\python.exe ä.py
other

c:\Python32\python.exe c.py
something
Traceback (most recent call last):
  File "c.py", line 3, in <module>
    import ä
ImportError: No module name ä


Victor: How do I determine what code page my old w2k is using?.
Would that be 8859-1 or some older variant for western Europe or Sweden?
History
Date User Action Args
2011-01-08 06:37:32ingemarsetrecipients: + ingemar, terry.reedy, vstinner, r.david.murray
2011-01-08 06:37:32ingemarsetmessageid: <1294468652.65.0.199058526643.issue10828@psf.upfronthosting.co.za>
2011-01-08 06:37:31ingemarlinkissue10828 messages
2011-01-08 06:37:31ingemarcreate