OILS / mycpp / testpkg / module2.py View on Github | oilshell.org

13 lines, 6 significant
1"""
2module2.py
3"""
4from mylib import log
5
6CONST2 = 'CONST module2'
7
8def func2():
9 # type: () -> None
10 log('func2')
11
12 from testpkg import module1
13 log(module1.CONST1)