Skip to content

Instantly share code, notes, and snippets.

@richo
Created September 4, 2011 06:45
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 richo/1192410 to your computer and use it in GitHub Desktop.
Save richo/1192410 to your computer and use it in GitHub Desktop.
class Thing(object):
def __init__(_, data):
print("I use _ for my instances, because fucking with people is great")
_.data = data
def get_data(_):
print(_.data)
b = Thing("rawr!")
b.get_data()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment