Files
openide/python/testData/debug/test_builtin_break.py

9 lines
60 B
Python

def foo():
a = 1
breakpoint()
return a
foo()