mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 13:14:18 +07:00
GitOrigin-RevId: e87aa7f8fde189ff2a48793879e27617ff6297e7
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
|