mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
13 lines
188 B
Python
13 lines
188 B
Python
class MyClass(object):
|
|
"""
|
|
My class to show intention.
|
|
"""
|
|
def __init__(self):
|
|
self._x = None
|
|
|
|
def x<caret>(self, y):
|
|
print y
|
|
return self._x
|
|
|
|
|
|
x = MyClass().x() |