Files
openide/python/testData/psi/parts/IfElse.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

6 lines
83 B
Python

# if and else
<the_if>if <the_cond>True:
<then_stmt>pass
else:
<else_stmt>pass