summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/dict.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-17 10:59:41 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-17 10:59:41 (GMT)
commit2aff335c36d8052e6d6f548eb7fa9c3786cbea1c (patch)
treebce8777772375398e41327a6484030403e6d2202 /Doc/c-api/dict.rst
parent418cc7340362cd50059b735757b11c1c7a45a1c6 (diff)
downloadcpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.zip
cpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.tar.gz
cpython-2aff335c36d8052e6d6f548eb7fa9c3786cbea1c.tar.bz2
#9204: remove mentions of removed types in the types module.
Diffstat (limited to 'Doc/c-api/dict.rst')
-rw-r--r--Doc/c-api/dict.rst7
1 files changed, 1 insertions, 6 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst
index 4ea71bc..836b108 100644
--- a/Doc/c-api/dict.rst
+++ b/Doc/c-api/dict.rst
@@ -15,13 +15,8 @@ Dictionary Objects
.. c:var:: PyTypeObject PyDict_Type
- .. index::
- single: DictType (in module types)
- single: DictionaryType (in module types)
-
This instance of :c:type:`PyTypeObject` represents the Python dictionary
- type. This is exposed to Python programs as ``dict`` and
- ``types.DictType``.
+ type. This is the same object as :class:`dict` in the Python layer.
.. c:function:: int PyDict_Check(PyObject *p)