mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
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 |