__new__() takes exactly one argument (the type to instantiate)
原代码:#-*-coding:utf-8-*-classPerson(object):def__new__(cls,name,age):print('__new__called.')returnsuper(Person,cls).__new__(cls,name,age)def__init__(self,name,age):print('__init__called.')self.name=nam