Files
openide/python/testData/psi/IfStatement.py
Dmitry Cheryasov 3bcabf5876 Fixes PY-71, introduces parts in multi-part statements.
Slight fixes to autoindenter.
2009-04-02 09:51:49 +04:00

21 lines
110 B
Python

if 0:
pass
if 1:
pass
else:
pass
if 2:
pass
elif 3:
pass
if 4:
pass
elif 5:
pass
else:
1