type.__module__
Содержит имя модуля, в котором класс был объявлен.
from collections import defaultdict
class A: # Для Python 2 - A(object)
pass
A.__module__ # '__main__'
int.__module__ # '__builtin__'
defaultdict.__module__ # 'collections'
Синонимы поиска: type.__module__, type, __module__
В разделе «type (тип)»:
basestring
Callable (вызываемый)
Container (контейнер)
Context Manager (менеджер контекста)
Descriptor (дескриптор)
Iterator (итератор)
Number (число)
object (объект)
type.__abstractmethods__
type.__base__
type.__bases__
type.__basicsize__
type.__dict__
type.__dictoffset__
type.__doc__
type.__flags__
type.__itemsize__
type.__mro__
type.mro
type.__name__
type.__sizeof__
unicode (юникод)
На заметку
Читайте нас в Twitter. Ссылка в самом низу страницы.