summaryrefslogtreecommitdiffstatshomepage
path: root/tests/import/import-pkg3.py
blob: 0ee885b220860ab06ee0f9130a194227880b6101 (plain) (blame)
1
2
3
4
5
6
from pkg import mod

print(mod.foo())

import pkg.mod
print(mod is pkg.mod)