-
:mod:`types` --- Names for built-in types
=========================================
.. data:: FunctionType
+ LambdaType
- The type of user-defined functions and lambdas.
-
-
-.. data:: LambdaType
-
- An alternate name for ``FunctionType``.
+ The type of user-defined functions and functions created by :keyword:`lambda`
+ expressions.
.. data:: GeneratorType
.. data:: ClassType
- The type of user-defined classes.
+ The type of user-defined :term:`old-style class`\es.
.. data:: InstanceType
.. data:: BuiltinFunctionType
+ BuiltinMethodType
- The type of built-in functions like :func:`len` or :func:`sys.exit`.
-
-
-.. data:: BuiltinMethodType
-
- An alternate name for ``BuiltinFunction``.
+ The type of built-in functions like :func:`len` or :func:`sys.exit`, and
+ methods of built-in classes. (Here, the term "built-in" means "written in
+ C".)
.. data:: ModuleType