mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
16 lines
189 B
Python
16 lines
189 B
Python
class MyClass(object):
|
|
"""
|
|
My class to show intention.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.a = 1
|
|
|
|
|
|
def my_static_method():
|
|
import code
|
|
import time
|
|
|
|
time.sleep(100)
|
|
print code
|