mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +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")
|