mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
PY-18808 Fixed: Incorrect variable highlighting Update PyReferenceImpl.resolvesToSameLocal to correctly handle comprehensions
4 lines
85 B
Python
4 lines
85 B
Python
def f():
|
|
xst = [(3, 4)]
|
|
k = 3
|
|
return [(<caret>k, str(v)) for k, v in xst] |