mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +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 [
4 lines
60 B
Python
4 lines
60 B
Python
P = {'a': 0}
|
|
M = [42]
|
|
|
|
M[<selection>P['a']</selection>] += 1 |