Created
August 16, 2012 18:55
-
-
Save iley/3372623 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Yoba(object): | |
| def __init__(self, name): | |
| self.name = name | |
| y = Yoba('YOBA') | |
| def hello(self): | |
| print "PRIVET ETO %s" % self.name | |
| Yoba.hello = hello | |
| y.hello() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment