This is what I found in my install of Python 3.1 on Windows.
Where can I find other types, specifically DictType and StringTypes?
>>> print('\n'.join(dir(types)))
BuiltinFunctionType
BuiltinMethodType
CodeType
FrameType
FunctionType
GeneratorType
GetSetDescriptorType
LambdaType
MemberDescriptorType
MethodType
ModuleType
TracebackType
__builtins__
__doc__
__file__
__name__
__package__
>>>
According to the doc of the
typesmodule (http://docs.python.org/py3k/library/types.html),Since the dictionary type can be used with
dict, there is no need to introduce such a type in this module.(The examples on
intandstrare outdated too.)