Skip to content

Instantly share code, notes, and snippets.

@MadWombat
Created March 15, 2017 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MadWombat/dfb667614ff9c8b2a55e32f6aa1ab46f to your computer and use it in GitHub Desktop.
Save MadWombat/dfb667614ff9c8b2a55e32f6aa1ab46f to your computer and use it in GitHub Desktop.
def nope(self):
print(self)
class Test:
nope = nope
def yup(self):
print(self)
test = Test()
test.yup()
test.nope()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment