Files
openide/python/testData/refactoring/introduceConstant/insertAfterAllGlobalVariablesOnWhichDepends.py
andrey.matveev aa5eb8dc43 PY-23500 Impl considering dependencies for introduce constant fix
(cherry picked from commit fe2adaeabbf1862c2f51a93df14995264a251cca)

IJ-MR-5221

GitOrigin-RevId: 08d0db849d31cdf7684a1b7a68d68072cc0d3686
2021-10-12 17:44:11 +00:00

11 lines
107 B
Python

X = 42
N = 42
A = 11
M = 24
K = 21
T = 28
O = 22
def f():
print(<selection>N + M + T + 1</selection>)