All pastes #2079564 Raw Edit

Unnamed

public python v1 · immutable
#2079564 ·published 2011-09-02 10:27 UTC
rendered paste body
class True(object):    def __eq__(self, other):        print "hello world"    def __add__(self, other):        print "how are you today?"    def __ne__(self, other):        print "so.. i gotta go."True = True()True != True + (True == True)