blob: d9ee2699577b114d4b246636a96cb51d850cfb25 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class SM(object):
2 def my_method(): pass
3 my_method = staticmethod(my_method)
4
5 def q(self):
6 self.my_method()