Elektrine lite

← Feed

@nedbat@hachyderm.io

Post #3474452

2026-06-29 13:28 UTC

@Tipa@gamepad.club Yes. the world is not easily described.

Replies (1)

  • @dalke@toots.nu 2026-06-29 14:52

    @nedbat@hachyderm.io @Tipa@gamepad.club One of the not-easily-described cases is __bases__, which is a variable-length tuple of types: >>> class Spam: pass ... >>> class Eggs: pass ... >>> class Meal(Eggs, Spam): pass ... >>> Meal.__bases__ (, ) That's a bit more to the "Technical" side than the "*args" case.

    Open ##3474451