Files
openide/python/helpers/pydev/tests_pydevd_python/_debugger_case56.py
T
2016-03-10 18:45:21 +03:00

10 lines
145 B
Python

def Call2():
print('Call2')
def Call1(a):
print('Call1')
if __name__ == '__main__':
Call1(Call2())
print('TEST SUCEEDED!')