Files
openide/python/testData/debug/stepping/test_my_code.py
Andrey Lisin 5029797a6c IDEA-CR-57291: PY-37771 Port new IDEA debugger smart step into UI/UX to PyCharm
(cherry picked from commit 4fefae6a1d9fbc6df174d53222ceba9208691b65)

GitOrigin-RevId: d6e65ace1378765be246fe09a86d2bff133855df
2020-02-21 17:31:28 +00:00

9 lines
131 B
Python

from calendar import setfirstweekday
def foo(x):
return x + 1
x = foo(2)
stopped_in_user_file = True
setfirstweekday(3)
x = 9