[Python-checkins] r73809 - in python/branches/py3k: Include/descrobject.h Misc/NEWS

benjamin.peterson python-checkins at python.org
Fri Jul 3 15:30:26 CEST 2009


Author: benjamin.peterson
Date: Fri Jul  3 15:30:25 2009
New Revision: 73809

Log:
remove duplicate declartions #6405

Modified:
   python/branches/py3k/Include/descrobject.h
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Include/descrobject.h
==============================================================================
--- python/branches/py3k/Include/descrobject.h	(original)
+++ python/branches/py3k/Include/descrobject.h	Fri Jul  3 15:30:25 2009
@@ -73,8 +73,6 @@
 PyAPI_DATA(PyTypeObject) PyMethodDescr_Type;
 PyAPI_DATA(PyTypeObject) PyWrapperDescr_Type;
 PyAPI_DATA(PyTypeObject) PyDictProxy_Type;
-PyAPI_DATA(PyTypeObject) PyGetSetDescr_Type;
-PyAPI_DATA(PyTypeObject) PyMemberDescr_Type;
 
 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Fri Jul  3 15:30:25 2009
@@ -27,6 +27,8 @@
 C-API
 -----
 
+- Issue #6405: Remove duplicatet type declarations in descrobject.h.
+
 - The code flags for old __future__ features are now available again.
 
 Library


More information about the Python-checkins mailing list