import parser does not import parser.py in same dir on win

J

Joel Hedlund

Hi!

I have a possibly dumb question about imports. I've written two python
modules:

parser.py
------------------------------------
class Parser(object):
"my parser"
------------------------------------

app.py
------------------------------------
from parser import Parser
print "import successful"
------------------------------------

Running app.py on linux, gives:
------------------------------------
import succesful
------------------------------------

However, runnning it on windows gives:
------------------------------------
Traceback (most recent call last):
File "test.py", line 1, in ?
from parser import Parser
ImportError: cannot import name Parser
------------------------------------

It turns out that on Windows, the builtin parser module is imported
instead. Why? Why is there a difference? What other names are "taken"?

In both cases the script dir is first on sys.path, and I'm using the
plain old terminal/cmd window.

Thanks for your time.

Cheers!
/Joel Hedlund
 
J

Joel Hedlund

the table of built-in modules are checked before searching the path.

I figured as much. But why is the behavior different on linux/win? Is
this documented somewhere?

/Joel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,789
Messages
2,569,634
Members
45,342
Latest member
Sicuro

Latest Threads

Top