mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 12:10:37 +07:00
10 lines
152 B
Python
10 lines
152 B
Python
def _require_instance(type_):
|
|
...
|
|
|
|
class C:
|
|
def do(self):
|
|
self._require_instance()
|
|
|
|
def _require_instance(self):
|
|
print("x")
|