mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
Now it's able to find not only empty function/class bodies but also empty blocks of other compound statements such as conditional branches, loops, try/except/finally parts etc.
7 lines
77 B
Python
7 lines
77 B
Python
def f():
|
|
for i in []:
|
|
pass
|
|
else:
|
|
x = 1
|
|
y = 2
|