Index: Doc/c-api/bytes.rst =================================================================== --- Doc/c-api/bytes.rst (revision 82984) +++ Doc/c-api/bytes.rst (working copy) @@ -18,10 +18,8 @@ .. cvar:: PyTypeObject PyBytes_Type - .. index:: single: BytesType (in module types) - This instance of :ctype:`PyTypeObject` represents the Python bytes type; it - is the same object as ``bytes`` in the Python layer. . + is the same object as ``bytes`` in the Python layer. .. cfunction:: int PyBytes_Check(PyObject *o) Index: Doc/c-api/slice.rst =================================================================== --- Doc/c-api/slice.rst (revision 82984) +++ Doc/c-api/slice.rst (working copy) @@ -8,12 +8,9 @@ .. cvar:: PyTypeObject PySlice_Type - .. index:: single: SliceType (in module types) + The type object for slice objects. This is the same as ``slice``. - The type object for slice objects. This is the same as ``slice`` and - ``types.SliceType``. - .. cfunction:: int PySlice_Check(PyObject *ob) Return true if *ob* is a slice object; *ob* must not be *NULL*. Index: Doc/c-api/float.rst =================================================================== --- Doc/c-api/float.rst (revision 82984) +++ Doc/c-api/float.rst (working copy) @@ -18,7 +18,7 @@ .. index:: single: FloatType (in modules types) This instance of :ctype:`PyTypeObject` represents the Python floating point - type. This is the same object as ``float`` and ``types.FloatType``. + type. This is the same object as ``float``. .. cfunction:: int PyFloat_Check(PyObject *p) Index: Doc/c-api/complex.rst =================================================================== --- Doc/c-api/complex.rst (revision 82984) +++ Doc/c-api/complex.rst (working copy) @@ -82,7 +82,7 @@ .. cvar:: PyTypeObject PyComplex_Type This instance of :ctype:`PyTypeObject` represents the Python complex number - type. It is the same object as ``complex`` and ``types.ComplexType``. + type. It is the same object as ``complex``. .. cfunction:: int PyComplex_Check(PyObject *p) Index: Doc/c-api/type.rst =================================================================== --- Doc/c-api/type.rst (revision 82984) +++ Doc/c-api/type.rst (working copy) @@ -15,12 +15,9 @@ .. cvar:: PyObject* PyType_Type - .. index:: single: TypeType (in module types) + This is the type object for type objects; it is the same object as ``type``. - This is the type object for type objects; it is the same object as ``type`` and - ``types.TypeType`` in the Python layer. - .. cfunction:: int PyType_Check(PyObject *o) Return true if the object *o* is a type object, including instances of types Index: Doc/c-api/dict.rst =================================================================== --- Doc/c-api/dict.rst (revision 82984) +++ Doc/c-api/dict.rst (working copy) @@ -15,13 +15,8 @@ .. cvar:: PyTypeObject PyDict_Type - .. index:: - single: DictType (in module types) - single: DictionaryType (in module types) - This instance of :ctype:`PyTypeObject` represents the Python dictionary - type. This is exposed to Python programs as ``dict`` and - ``types.DictType``. + type. This is exposed to Python programs as ``dict``. .. cfunction:: int PyDict_Check(PyObject *p) Index: Doc/c-api/tuple.rst =================================================================== --- Doc/c-api/tuple.rst (revision 82984) +++ Doc/c-api/tuple.rst (working copy) @@ -15,10 +15,8 @@ .. cvar:: PyTypeObject PyTuple_Type - .. index:: single: TupleType (in module types) - This instance of :ctype:`PyTypeObject` represents the Python tuple type; it is - the same object as ``tuple`` and ``types.TupleType`` in the Python layer.. + the same object as ``tuple`` in the Python layer.. .. cfunction:: int PyTuple_Check(PyObject *p)