Files
openide/python/testData/codeInsight/mlcompletion/sameColumnKeywordsForSeparateLineIf.py
andrey.matveev c4950335ac PY-39607 Add new features for ml completion
GitOrigin-RevId: caf60bd52a1872a2eb53f3617a6ffb51b195ff33
2020-01-29 13:41:50 +00:00

14 lines
118 B
Python

a, b = 2, 3
if a > b:
print(a)
for i in range(0, 10)
pass
z = 42
if a * 2 > b:
print(b)
<caret>