fork download
  1. class C():
  2. def dec(self, func):
  3. print("C.dec method called on an instance:", self)
  4. return func
  5.  
  6. c = C()
  7. print("c = ", c)
  8.  
  9. @c.dec
  10. def func():
  11. pass
Success #stdin #stdout 0.02s 9132KB
stdin
Standard input is empty
stdout
c  =  <__main__.C object at 0x1515796c46d8>
C.dec method called on an instance: <__main__.C object at 0x1515796c46d8>