I read from Learning Python (5th edition) that (on Page 1364, Chapter 40):
In Python 2.X, new-style classes inherit from object, which is a subclass of type; classic classes are instances of type and are not created from a class.
However,
issubclass(object, type)
gives me
False
in Python 2.7.
So, it seems that the author made a false statement that object is a subclass of type, or am I missing anything?