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
70 B
Python
4 lines
70 B
Python
def f():
|
|
xst = [3, 4]
|
|
k = 3
|
|
return [<caret>k for k in xst] |