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
5 lines
109 B
Python
5 lines
109 B
Python
def f():
|
|
x<caret>st = [(1, 2)]
|
|
print(xst)
|
|
xst = [(3, 4)]
|
|
return [(k, str(v)) for k, v in xst] |