Created
September 4, 2011 06:45
-
-
Save richo/1192410 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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