fb7f94392d
http://docs.python.org/3.3/library/functions.html#__import__ : "When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned, not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned."
19 lines
379 B
Python
19 lines
379 B
Python
from pkg.mod import foo
|
|
|
|
try:
|
|
pkg
|
|
except NameError:
|
|
print("NameError")
|
|
try:
|
|
pkg.mod
|
|
except NameError:
|
|
print("NameError")
|
|
print(foo())
|
|
|
|
# Import few times, must be same module objects
|
|
mod_1 = __import__("pkg.mod", None, None, ("foo",))
|
|
mod_2 = __import__("pkg.mod", None, None, ("foo",))
|
|
print(mod_1 is mod_2)
|
|
print(mod_1.foo is mod_2.foo)
|
|
print(foo is mod_1.foo)
|