mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 14:36:58 +07:00
6 lines
116 B
Python
6 lines
116 B
Python
class C:
|
|
def __init__(self):
|
|
self.__attr = True
|
|
|
|
def me<caret>thod(self):
|
|
print(self.__attr) |