mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
Test data and PyQuickFixTest are updated accordingly. Test for renaming in language injection added.
15 lines
155 B
Python
15 lines
155 B
Python
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self.A_NEW_NAME = 1
|
|
|
|
def _foo(self):
|
|
pass
|
|
|
|
|
|
a_class = A()
|
|
a_class._foo()
|
|
print(a_class.A_NEW_NAME)
|
|
|