D | reflection.py | 28 def __new__(mcs, name, bases, dictionary): argument 39 return type.__new__(mcs, name, bases, dictionary) 41 def __setattr__(mcs, key, value): argument 44 def __delattr__(mcs, key): argument 81 def __new__(mcs, name, bases, dictionary): argument 118 return type.__new__(mcs, name, bases, dictionary) 121 def __setattr__(mcs, key, value): argument 125 def __delattr__(mcs, key): argument
|