summaryrefslogtreecommitdiff
path: root/tests/import/import_pkg1.py
blob: 5c1b2ef4c75ba98d5f0174a7f9ef30eb9d0569e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import pkg.mod

print(pkg.__name__)
print(pkg.mod.__name__)
print(pkg.mod.foo())

# Import 2nd time, must be same module objects
pkg_ = __import__("pkg.mod")
print(pkg_ is not pkg.mod)
print(pkg_ is pkg)
print(pkg_.mod is pkg.mod)

# import using "as"
import pkg.mod as mm

print(mm is pkg.mod)
print(mm.foo())