diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-13 21:14:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-13 21:14:10 (GMT) |
commit | 8c72b4e931545afb4f5793b0ca62aae6cf0fa80c (patch) | |
tree | d34324c42a58ecf678443e15ff1a7f3d6a7b97ef | |
parent | 8652f2e83e8fd04a2ca845e5b2ac16f8951847fe (diff) | |
download | cpython-8c72b4e931545afb4f5793b0ca62aae6cf0fa80c.zip cpython-8c72b4e931545afb4f5793b0ca62aae6cf0fa80c.tar.gz cpython-8c72b4e931545afb4f5793b0ca62aae6cf0fa80c.tar.bz2 |
rip out mention of types.ListType #8703
-rw-r--r-- | Doc/c-api/list.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Doc/c-api/list.rst b/Doc/c-api/list.rst index ebbab13..242b4e6 100644 --- a/Doc/c-api/list.rst +++ b/Doc/c-api/list.rst @@ -15,11 +15,8 @@ List Objects .. cvar:: PyTypeObject PyList_Type - .. index:: single: ListType (in module types) - - This instance of :ctype:`PyTypeObject` represents the Python list type. - This is the same object as ``list`` and ``types.ListType`` in the Python - layer. + This instance of :ctype:`PyTypeObject` represents the Python list type. This + is the same object as ``list`` in the Python layer. .. cfunction:: int PyList_Check(PyObject *p) |