Skip to content

Instantly share code, notes, and snippets.

@iley
Created August 16, 2012 18:55
Show Gist options
  • Select an option

  • Save iley/3372623 to your computer and use it in GitHub Desktop.

Select an option

Save iley/3372623 to your computer and use it in GitHub Desktop.
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