<div dir="ltr">Sometimes users inherit from builtin types only to find that their overridden methods are not called.  Instead of this being a trap for unsuspecting users, I suggest overriding the __new__ method of these types so that it will raise with an informative exception explaining that, e.g., instead of inheriting from dict, you should inherit from UserDict.<div><br></div><div>I suggest this modification to any Python implementation that has special versions of classes that cannot easily be extended, such as CPython.  If another Python implementation allows dict (e.g.) to be extended easily, then it doesn't have to raise.<br><div><br></div><div>Best,</div><div><br></div><div>Neil</div></div></div>