Files
openide/python/testData/copyPaste/EmptyBranchBlock.dst.py
Mikhail Golubev 5744c4792c PY-18522 Better detection of empty statement blocks near whitespace
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.
2016-04-05 17:04:18 +03:00

6 lines
57 B
Python

def f():
for i in []:
pass
else:
<caret>