Adam Preble <adam.pre...@gmail.com> writes:

> On Sunday, March 1, 2020 at 3:08:29 PM UTC-6, Terry Reedy wrote:
>
>> Because BaseClass is the superclass of SubClass.
>
> So there's a mechanism for parent classes to know all their children?

Yes, you just used it, although you may have confused its meaning:

    >>> class Base:
    ...   pass
    ... 
    >>> class Derived(Base):
    ...   pass
    ... 
    >>> print(Base.__subclasses__())
    [<class '__main__.Derived'>]

ciao, lele.
-- 
nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri
real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia.
l...@metapensiero.it  |                 -- Fortunato Depero, 1929.

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to