mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 10:39:51 +07:00
fixed PY-10221 Refactor->Extract->Variable may break square bracket symmetry and may break user input there are overlapped reference in python for slice expression (P['x']) one for the reference itself, one for the operator [
5 lines
45 B
Python
5 lines
45 B
Python
P = {'a': 0}
|
|
M = [42]
|
|
|
|
a_ = P['a']
|
|
M[a_] += 1 |