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