Basically I have a subpackage with the same name as a standard library package ("logging") and I'd like it to be able to absolute-import the standard one no matter how I run it, but this fails when I'm in the parent package.
It really looks like either a bug, or an undocumented behaviour of the new "absolute import" support (new as of Python 2.5). Tried with 2.5 and 2.6.
Package layout:
foo/
__init__.py
logging/
__init__.py
In foo/__init__.py
we import our own logging subpackage:
from __future__ import absolute_import
from . import logging as rel_logging
print 'top, relative:', rel_logging
In foo/logging/__init__.py
we want to import the stdlib logging
package:
from __future__ import absolute_import
print 'sub, name:', __name__
import logging as abs_logging
print 'sub, absolute:', abs_logging
Note: The folder containing foo
is in sys.path.
When imported from outside/above foo
, the output is as expected:
c:> python -c "import foo"
sub, name: foo.logging
sub, absolute: <module 'logging' from 'c:python26liblogging\__init__.pyc'>
top, relative: <module 'foo.logging' from 'foologging\__init__.pyc'>
So the absolute import in the subpackage finds the stdlib package as desired.
But when we're inside the foo
folder, it behaves differently:
c:foo>python25python -c "import foo"
sub, name: foo.logging
sub, name: logging
sub, absolute: <module 'logging' from 'logging\__init__.pyc'>
sub, absolute: <module 'logging' from 'logging\__init__.pyc'>
top, relative: <module 'foo.logging' from 'c:foologging\__init__.pyc'>
The double output for "sub, name" shows that my own subpackage called "logging" is importing itself a second time, and it does not find the stdlib "logging" package even though "absolute_import" is enabled.
The use case is that I'd like to be able to work with, test, etc, this package regardless of what the current directory is. Changing the name from "logging" to something else would be a workaround, but not a desirable one, and in any case this behaviour doesn't seem to fit with the description of how absolute imports should work.
Any ideas what is going on, whether this is a bug (mine or Python's), or whether this behaviour is in fact implied by some documentation?
Edit: the answer by gahooa shows clearly what the problem is. A crude work-around that proves that's it is shown here:
c:foo>python -c "import sys; del sys.path[0]; import foo"
sub, name: foo.logging
sub, absolute: <module 'logging' from 'c:python26liblogging\__init__.pyc'>
top, relative: <module 'foo.logging' from 'c:foologging\__init__.pyc'>
See Question&Answers more detail:
os