Вопрос

For example:

>>> import os
>>> '__dict__' in dir(os)
False

But os.__dict__ shows there is a __dict__ attribute.

Это было полезно?

Решение

Because dir uses a specialized implementation for modules, which returns all the keys in the module's __dict__, and thus neglects to include the __dict__ attribute itself.

It is not clear from reading the source code whether this is intentional.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top