summaryrefslogtreecommitdiff
path: root/test/test.py
blob: c7d4f02fbbfc7b726b05337be39fc688893de64a (plain)
1
2
3
4
5
6
7
8
9
10

import sys
# from pkg.a_module import func_from_a
# from pkg import func_from_a

for p in sys.path:
    print(p)

a = 100
# func_from_a()