python-distilled
python-distilled copied to clipboard
Chapter 7.7 the last paragraph in p162
Inherientance establishes a relationship in the type system where any child class will type-check as the parent class.
This statement seems to be odd corresponding to the example code shown below.
>>>isinstance(a, Account)
True