mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
- refs that resolve to locally available targets are not renamed - fixed scope computation for generating new names GitOrigin-RevId: c2ab0c93c9712f6be3ffcb4e73f72f4771e96997
11 lines
204 B
Python
11 lines
204 B
Python
def MyClass():
|
|
def __init__(self): # init is necessary to check resolve target
|
|
pass
|
|
|
|
|
|
def my_function():
|
|
res = MyClass() # should not be renamed
|
|
return res
|
|
|
|
|
|
x = my_fun<caret>ction() |