mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: e87aa7f8fde189ff2a48793879e27617ff6297e7
13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
class MyClass(object):
|
|
"""
|
|
My class to show intention.
|
|
"""
|
|
def __init__(self):
|
|
self._x = None
|
|
|
|
@property
|
|
def x(self):
|
|
return self._x
|
|
|
|
|
|
x = MyClass().x |