mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 12:14:37 +07:00
Enable frame evaluation debugging back after stepping and disable it if exception breakpoints were added. It also contains some renames and extracting of code for breakpoints handling.
17 lines
159 B
Python
17 lines
159 B
Python
from time import sleep
|
|
|
|
|
|
def foo(x):
|
|
print(x)
|
|
|
|
x = 0
|
|
print(x)
|
|
foo(x)
|
|
while x<2:
|
|
x+=1
|
|
print(x)
|
|
|
|
x+=10
|
|
print("x = %d" % x)
|
|
while True:
|
|
sleep(0.1) |