blob: 65b02027cda467db54b024973f9c20b1098abc78 [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 @staticmethod
10 def my_<caret>static_method():
11 import code
12 import time
13
14 time.sleep(100)
15 print code
16
17MyClass().my_static_method()