mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
14 lines
146 B
Python
14 lines
146 B
Python
__author__ = 'ktisha'
|
|
|
|
|
|
class A:
|
|
"""
|
|
class docstring
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.b = 1
|
|
|
|
def foo(self):
|
|
pass
|