mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 14:28:56 +07:00
19 lines
267 B
Python
19 lines
267 B
Python
def Method1():
|
|
print('m1')
|
|
print('m1')
|
|
|
|
def Method1a():
|
|
print('m1a')
|
|
print('m1a')
|
|
|
|
def Method2():
|
|
print('m2 before')
|
|
Method1()
|
|
Method1a()
|
|
print('m2 after')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
Method2()
|
|
print('TEST SUCEEDED!')
|