[Python-checkins] r81160 - in python/branches/release31-maint: Doc/c-api/list.rst
benjamin.peterson
python-checkins at python.org
Fri May 14 03:33:36 CEST 2010
Author: benjamin.peterson
Date: Fri May 14 03:33:36 2010
New Revision: 81160
Log:
Merged revisions 81146 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r81146 | benjamin.peterson | 2010-05-13 16:16:51 -0500 (Thu, 13 May 2010) | 9 lines
Merged revisions 81145 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81145 | benjamin.peterson | 2010-05-13 16:14:10 -0500 (Thu, 13 May 2010) | 1 line
rip out mention of types.ListType #8703
........
................
Modified:
python/branches/release31-maint/ (props changed)
python/branches/release31-maint/Doc/c-api/list.rst
Modified: python/branches/release31-maint/Doc/c-api/list.rst
==============================================================================
--- python/branches/release31-maint/Doc/c-api/list.rst (original)
+++ python/branches/release31-maint/Doc/c-api/list.rst Fri May 14 03:33:36 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