Files
openide/python/testData/copyPaste/EmptyBranchBlock.after.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

7 lines
77 B
Python

def f():
for i in []:
pass
else:
x = 1
y = 2