here is my haha class
class haha(object):
def theprint(self):
print "i am here">>> haha().theprint() i am here >>> haha(object).theprint() Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: object.__new__() takes no parameters why haha(object).theprint() get wrong output?
-- http://mail.python.org/mailman/listinfo/python-list
