# python lets you quietly redefine member functions
class Wtf(object):
def __init__(self):
http://self.wtf = None
def wtf(self):
http://self.wtf = "Hey!"
return http://self.wtf
wtf = Wtf()
http://wtf.wtf() # boom https://x.com/mistersql/status/1004126241862152193
Post
June 5, 2018