| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class 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 | |||||
| 17 | MyClass().my_static_method() | ||||