mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +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.
6 lines
57 B
Python
6 lines
57 B
Python
def f():
|
|
for i in []:
|
|
pass
|
|
else:
|
|
<caret>
|