summaryrefslogtreecommitdiffstatshomepage
path: root/tests/import/import-pkg2.py
blob: 2e9f34121b818c16375aaf723775517ab7f2ffe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)