[Python-checkins] r81145 - python/trunk/Doc/c-api/list.rst

benjamin.peterson python-checkins at python.org
Thu May 13 23:14:10 CEST 2010


Author: benjamin.peterson
Date: Thu May 13 23:14:10 2010
New Revision: 81145

Log:
rip out mention of types.ListType #8703

Modified:
   python/trunk/Doc/c-api/list.rst

Modified: python/trunk/Doc/c-api/list.rst
==============================================================================
--- python/trunk/Doc/c-api/list.rst	(original)
+++ python/trunk/Doc/c-api/list.rst	Thu May 13 23:14:10 2010
@@ -15,11 +15,8 @@
 
 .. 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)


More information about the Python-checkins mailing list