blob: d0d347125bc936cdbe443308d61e3a3b18cf43dd [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