Guest User

Untitled

a guest
Jun 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Foo(object):
  2. @classmethod
  3. def bar(cls, text):
  4. print text
  5.  
  6. >>> Foo.bar("stuff")
  7. stuff
  8. >>> local_bar = Foo.bar
  9. >>> local_bar("stuff")
  10. stuff
Add Comment
Please, Sign In to add comment