We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__dict__
Some builtin/extension classes have a __dict__...
>>> RuntimeError().__dict__ {}
...while others do not
>>> list().__dict__ # error >>> Decimal().__dict__ # error
I haven't found a way to be able to distinguish these, without instantiating an instance.