Skip to content

Instantly share code, notes, and snippets.

@alexshires
Created August 19, 2015 10:29
Show Gist options
  • Save alexshires/f1b74120c94170753d20 to your computer and use it in GitHub Desktop.
Save alexshires/f1b74120c94170753d20 to your computer and use it in GitHub Desktop.
class testClass:
def foo(self, x):
print "foo", x
def bar(self, y):
print "bar", y
def test():
v1 = testClass()
v2 = testClass()
v2.foo = bar
print v1, v2
print v1.foo(1), v2.foo(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment