Files
pytry/pyFun/doing both obj.foo() and foo(obj).py
T
2014-02-05 10:44:04 +05:30

6 lines
72 B
Python

def a(self):
print self
class b():
def a(self):
a(self)