circuitpython/tests/import/import_pkg3.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
77 B
Python
Raw Permalink Normal View History

from pkg import mod
print(mod.foo())
import pkg.mod
2021-03-15 09:57:36 -04:00
print(mod is pkg.mod)