"""Create new objects of various types. Deprecated.This module is no longer required except for backward compatibility.Objects of most types can now be created by calling the type object."""from types import ClassType as classobjfrom types import FunctionType as functionfrom types import InstanceType as instancefrom types import MethodType as instancemethodfrom types import ModuleType as module# CodeType is not accessible in restricted execution modetry: from types import CodeType as codeexcept ImportError: pass