Files
openide/python/testData/debug/test_resume_after_step.py
2017-01-31 20:51:44 +03:00

17 lines
174 B
Python

def foo():
a = 1
b = 2 # breakpoint
c = 3
d = 4
e = 5 # breakpoint
return a + b
def main():
foo()
t = 1
s = 12 # breakpoint
main()