I have a python script (part of a django application, if it makes any
difference) which is exhibiting the following behaviour:
import my_module # succeeds
imp.find_module("my_module") # fails, raising ImportError
which is completely baffling me. According to sys.path, both should
fail; the directory containing my_module is not in sys.path (though
the my_module directory itself is). More puzzlingly, printing out
my_module.__file__ gives:
/home/tow/test/my_module/../my_module/__init__.pyc
I don't really understand what the ".." is doing in there.
Can someone explain what I'm missing here, it's got me stumped.
Toby 8 1525
En Mon, 11 Aug 2008 19:19:19 -0300, tow <to************@googlemail.com>
escribi�:
I have a python script (part of a django application, if it makes any
difference) which is exhibiting the following behaviour:
import my_module # succeeds
imp.find_module("my_module") # fails, raising ImportError
which is completely baffling me. According to sys.path, both should
fail; the directory containing my_module is not in sys.path (though
the my_module directory itself is).
my_module is not a module but a package, right? Else I don't understand
the above statement.
More puzzlingly, printing out
my_module.__file__ gives:
/home/tow/test/my_module/../my_module/__init__.pyc
I don't really understand what the ".." is doing in there.
Can someone explain what I'm missing here, it's got me stumped.
Perhaps you have ".." in sys.path? And the current directory happens to be
/home/tow/test/my_module?
--
Gabriel Genellina
On Aug 12, 4:59*am, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
En Mon, 11 Aug 2008 19:19:19 -0300, tow <toby.o.h.wh...@googlemail.com*
escribi :
I have a python script (part of a django application, if it makes any
difference) which is exhibiting the following behaviour:
import my_module # succeeds
imp.find_module("my_module") # fails, raising ImportError
which is completely baffling me. According to sys.path, both should
fail; the directory containing my_module is not in sys.path (though
the my_module directory itself is).
my_module is not a module but a package, right? Else I don't understand *
the above statement.
Sorry, sloppy terminology on my part, yes, my_module is a package.
More puzzlingly, printing out
my_module.__file__ gives:
/home/tow/test/my_module/../my_module/__init__.pyc
I don't really understand what the ".." is doing in there.
Can someone explain what I'm missing here, it's got me stumped.
Perhaps you have ".." in sys.path? And the current directory happens to be *
/home/tow/test/my_module?
The current directory is actually a subdirectory of /home/tow/test/
my_module,
but ".." is not in sys.path (nor is anything containing "..") In any
case, if
it were a matter of sys.path, surely the imp.find_module call above
should succeed?
Basically, I had thought that import and imp.find_module used exactly
the same
search path, but the above example shows that at least in this
circumstance they
don't; import is picking up additional search paths from somewhere -
what am I missing?
Toby
tow wrote:
>I have a python script (part of a django application, if it makes any
difference) which is exhibiting the following behaviour:
import my_module # succeeds
imp.find_module("my_module") # fails, raising ImportError
which is completely baffling me. According to sys.path, both should
fail; the directory containing my_module is not in sys.path (though
the my_module directory itself is).
The current directory is actually a subdirectory of /home/tow/test/
my_module,
but ".." is not in sys.path (nor is anything containing "..") In any
Basically, I had thought that import and imp.find_module used exactly
the same
search path, but the above example shows that at least in this
circumstance they
don't; import is picking up additional search paths from somewhere -
what am I missing?
Grepping through the django source finds
../trunk/django/core/management/__init__.py:
sys.path.append(os.path.join(project_directory, os.pardir))
sys.path could be changed as a side effect of an import, so I ask you to
verify (again) that import and imp.find_module() see the same sys.path.
assert all(".." not in p for p in sys.path)
import my_module
assert all(".." not in p for p in sys.path)
imp.find_module("my_module")
Peter
On Aug 12, 9:56*am, Peter Otten <__pete...@web.dewrote:
tow wrote:
Basically, I had thought that import and imp.find_module used exactly
the same
search path, but the above example shows that at least in this
circumstance they
don't; import is picking up additional search paths from somewhere -
what am I missing?
Grepping through the django source finds
./trunk/django/core/management/__init__.py: *
sys.path.append(os.path.join(project_directory, os.pardir))
Hmm. It turns out that that is indeed the issue, but in a way that
wasn't immediately obvious to me. Looking at it in more context:
sys.path.append(os.path.join(project_directory, os.pardir))
project_module = __import__(project_name, {}, {}, [''])
sys.path.pop()
sys.path is extended, the project module is imported, then the
additional path is dropped from sys.path.
And if I comment out those sys.path manipulations, I get the result I
expect later on.
What I think is happening is that in that stanza, project_module
(which is my_module in my case) is
imported from the altered sys.path. sys.path is then put back, but
python now knows about my_module.
As a result when my_module is imported again elsewhere, python already
knows about it, so no searching
of sys.path is done (which is good, because it wouldn't be found on
the current sys.path), and the
import apparently succeeds, though in fact it's effectively
(actually?) a no-op.
However, imp.find_module("my_module") forces a search of the sys.path,
and thus fails.
Or at least, that is what I surmise, given that I see
import my_module # succeeds
imp.find_module("my_module") # fails, raising ImportError
So, to answer my original question, the difference in search behaviour
between "import" and "imp.find_module" is that the former might not
look at sys.path at all if the module has already been loaded, while
the latter will only search on the current sys.path.
Am I right?
Toby
tow wrote:
On Aug 12, 9:56Â*am, Peter Otten <__pete...@web.dewrote:
>tow wrote:
Basically, I had thought that import and imp.find_module used exactly
the same
search path, but the above example shows that at least in this
circumstance they
don't; import is picking up additional search paths from somewhere -
what am I missing?
Grepping through the django source finds
./trunk/django/core/management/__init__.py: sys.path.append(os.path.join(project_directory, os.pardir))
Hmm. It turns out that that is indeed the issue, but in a way that
wasn't immediately obvious to me. Looking at it in more context:
sys.path.append(os.path.join(project_directory, os.pardir))
project_module = __import__(project_name, {}, {}, [''])
sys.path.pop()
Ouch.
So, to answer my original question, the difference in search behaviour
between "import" and "imp.find_module" is that the former might not
look at sys.path at all if the module has already been loaded, while
the latter will only search on the current sys.path.
Am I right?
Yes. 'import' looks up the file in a cache, the sys.modules dictionary,
before it falls back to the more costly alternatives.
Peter
Peter Otten <__*******@web.dewrote:
>tow wrote:
> sys.path.append(os.path.join(project_directory, os.pardir)) project_module = __import__(project_name, {}, {}, ['']) sys.path.pop()
Ouch.
I presume that "Ouch" is in consideration of what might happen if
the subject of the __import__ also calls sys.path.append ...?
--
\S -- si***@chiark.greenend.org.uk -- http://www.chaos.org.uk/~sion/
"Frankly I have no feelings towards penguins one way or the other"
-- Arthur C. Clarke
her nu becomeþ se bera eadward ofdun hlæddre heafdes bæce bump bump bump
On Aug 12, 4:59*pm, Peter Otten <__pete...@web.dewrote:
tow wrote:
On Aug 12, 9:56*am, Peter Otten <__pete...@web.dewrote:
tow wrote:
Basically, I had thought that import and imp.find_module used exactly
the same
search path, but the above example shows that at least in this
circumstance they
don't; import is picking up additional search paths from somewhere -
what am I missing?
Grepping through the django source finds
./trunk/django/core/management/__init__.py:
sys.path.append(os.path.join(project_directory, os.pardir))
Hmm. It turns out that that is indeed the issue, but in a way that
wasn't immediately obvious to me. Looking at it in more context:
* * sys.path.append(os.path.join(project_directory, os.pardir))
* * project_module = __import__(project_name, {}, {}, [''])
* * sys.path.pop()
Ouch.
So, to answer my original question, the difference in search behaviour
between "import" and "imp.find_module" is that the former might not
look at sys.path at all if the module has already been loaded, while
the latter will only search on the current sys.path.
Am I right?
Yes. 'import' looks up the file in a cache, the sys.modules dictionary,
before it falls back to the more costly alternatives.
Peter
Thanks, at least I understand what's going on now.
Toby
Sion Arrowsmith wrote:
Peter Otten <__*******@web.dewrote:
>>tow wrote:
>> sys.path.append(os.path.join(project_directory, os.pardir)) project_module = __import__(project_name, {}, {}, ['']) sys.path.pop()
Ouch.
I presume that "Ouch" is in consideration of what might happen if
the subject of the __import__ also calls sys.path.append ...?
Yes ;)
Peter This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Csaba Henk |
last post by:
Hello!
I use Python 2.2.2 on Linux. I met the following issue:
Say I have the module mymod and the script myprog.py in /mydir.
myprog.py imports mymod. If I create a symlink
/foo/myprog2.py...
|
by: Stephen Ferg |
last post by:
I need a little help here.
I'm developing some introductory material on Python for non-programmers.
The first draft includes this statement. Is this correct?
...
|
by: Jesse B. |
last post by:
I have just begun to learn python using o'reilly's Learning Python, and in
chapter 3 it talks about importing modules. It has me make modules to
practice using the 'import' and 'from' statements...
|
by: kimes |
last post by:
I've just started digging into how python works..
I found that other mudules are clearly declared like one file per a
module..
But the only os.path doesn't have their own file..
ye I know is...
|
by: Theo v. Werkhoven |
last post by:
Goodday,
Something strange going on here.
A piece of code I wrote bombs out in one of de directories under $HOME,
but not in others.
Here's a snipped:
#v+
def bin2asc(c):
s=''
|
by: kwatch |
last post by:
What is the condition of module name which is available in
'from .. import ..' statement ?
----------------------------------------
import os
print os.path # <module 'posixpath'...
|
by: mhearne808[insert-at-sign-here]gmail[insert-dot-he |
last post by:
I think I don't understand how the module search path works...
Let's say I have a folders called 'test'. Underneath it, I create two
more folders called 'foo' and 'bar'.
In 'foo', I create an...
|
by: koara |
last post by:
Hello, is there a way to access a module that is hidden because
another module (of the same name) is found first?
More specifically, i have my own logging.py module, and inside this
module,...
|
by: sawilla |
last post by:
First, I'm new to Python. I'm getting and error when I run Python
2.5.2 as a regular user in Vista but not when I run Python as an
administrator.
For example, if I type "import numpy" after I...
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |