Skip to content

Instantly share code, notes, and snippets.

@nakamuray
Last active August 29, 2015 14:02
Show Gist options
  • Save nakamuray/32ab5fe0d658b35fb5fc to your computer and use it in GitHub Desktop.
Save nakamuray/32ab5fe0d658b35fb5fc to your computer and use it in GitHub Desktop.
class Base(object):
def __init__(self):
print('original')
class Klass(Base):
pass
Klass()
def __init__(self):
print('override')
Base.__init__ = __init__
Klass()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment