예제 #1
0
파일: run.py 프로젝트: wbkifun/my_stuff
#!/usr/bin/env python


from dir_a.FuncA import fa
from dir_b.FuncB import fb
from dir_b.dir_c.FuncC import fc


print('-'*47)
fa()

print('-'*47)
fb()

print('-'*47)
fc()
예제 #2
0
파일: FuncC.py 프로젝트: wbkifun/my_stuff
def fc():
    print('fc()')
    print('call fa()')
    fa()
    print('call fb()')
    fb()
예제 #3
0
파일: FuncB.py 프로젝트: wbkifun/my_stuff
def fb():
    print('fb()')
    print('call fa()')
    fa()