>>super(objec t, type)
<super: <class 'object'>, <type object>>
<super: <class 'type'>, <type object>>
how can both work?
they can't both be the superclass of each other right? or is it some
sort of mutually recursive definition?
Help on class object in module __builtin__:
class object
| The most base type
Help on class type in module __builtin__:
class type(object)
| type(object) -the object's type
| type(name, bases, dict) -a new type
<super: <class 'object'>, <type object>>
>>super(type, object)
>>>
they can't both be the superclass of each other right? or is it some
sort of mutually recursive definition?
>>help(object )
class object
| The most base type
>>help(type)
class type(object)
| type(object) -the object's type
| type(name, bases, dict) -a new type
Comment