blob: 6b79b2b27d6ae35930abfbf363179ffa8d425971 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class MyClass(object):
2 """
3 My class to show intention.
4 """
5
6 def __init__(self):
7 self.a = 1
8
9
10def my_static_method():
11 import code
12 import time
13
14 time.sleep(100)
15 print code
16
17
18my_static_method()