Skip to content

Instantly share code, notes, and snippets.

@goodwillcoding
Created January 5, 2013 06:31
Show Gist options
  • Save goodwillcoding/4460141 to your computer and use it in GitHub Desktop.
Save goodwillcoding/4460141 to your computer and use it in GitHub Desktop.
File Edit Options Buffers Tools Python Help
class Bar(object):
def meth1(self):
pass
class Foo(Bar):
def meth2(self, func=Bar.meth1):
print func
f = Foo()
f.meth2()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment