mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 15:03:36 +07:00
16 lines
176 B
Python
16 lines
176 B
Python
def m1():
|
|
print('m1')
|
|
|
|
def m2(): # @DontTrace
|
|
m1()
|
|
print('m2')
|
|
|
|
def m3():
|
|
m2()
|
|
print('m3')
|
|
|
|
if __name__ == '__main__':
|
|
m3()
|
|
|
|
print('TEST SUCEEDED')
|