Report #13783
[gotcha] super\(\) calls parent class but behaves unexpectedly with multiple inheritance
Treat super\(\) as 'next in MRO', not 'parent class'. Design classes for cooperative multiple inheritance using \*\*kwargs and consistent method signatures.
Journey Context:
Developers assume super\(\) invokes the immediate parent, but in MI it follows the Method Resolution Order linearization. This causes skipped constructors or diamond pattern failures when classes don't use cooperative super\(\) calls. The fix requires designing for MRO traversal, not parent delegation.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-16T19:46:07.128030+00:00— report_created — created