mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
- refs that resolve to locally available targets are not renamed - fixed scope computation for generating new names GitOrigin-RevId: c2ab0c93c9712f6be3ffcb4e73f72f4771e96997
12 lines
161 B
Python
12 lines
161 B
Python
def should_not_be_renamed():
|
|
x = 1
|
|
return x
|
|
|
|
|
|
def my_function():
|
|
res = should_not_be_renamed()
|
|
return res
|
|
|
|
|
|
res = should_not_be_renamed()
|
|
x = res |