From: Andrew MacIntyre Date: Fri, 26 Dec 2003 00:19:28 +0000 (+0000) Subject: reverting 2.29: the patch was Ok, but the commit msg wrong X-Git-Tag: v2.4a1~1043 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f3a24d0b373b4b35e832d6816c0b425188cbd5f;p=python reverting 2.29: the patch was Ok, but the commit msg wrong --- diff --git a/Include/dictobject.h b/Include/dictobject.h index 7fa400a5b2..554b82e5a3 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -87,7 +87,6 @@ struct _dictobject { PyAPI_DATA(PyTypeObject) PyDict_Type; #define PyDict_Check(op) PyObject_TypeCheck(op, &PyDict_Type) -#define PyList_CheckExact(op) ((op)->ob_type == &PyDict_Type) PyAPI_FUNC(PyObject *) PyDict_New(void); PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);