summaryrefslogtreecommitdiffstatshomepage
path: root/tests/import/import-pkg1.py
blob: 8cd77af79dbacce9f2399a444424ae546de059d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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)