mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
15 lines
188 B
Plaintext
15 lines
188 B
Plaintext
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
|