Files
openide/python/testData/codeInsight/mlcompletion/sameColumnKeywords2.py
andrey.matveev 92e41799f2 PY-37720 Impl python ml completion features
GitOrigin-RevId: 3b8029ab460672b286d7b1cf96fd35bf9c57bf59
2019-10-11 08:01:46 +00:00

7 lines
72 B
Python

a, b = 2, 3
if a > b:
print(a)
z = 42
if a * 2 > b:
print(b)
<caret>