From: Jeremy Hylton Date: Fri, 26 Dec 2003 17:17:49 +0000 (+0000) Subject: Fix name problem in previous checkin: Dict not List X-Git-Tag: v2.4a1~1041 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87c1afa057f795cecf197d9d2ec09e8e097b2601;p=thirdparty%2FPython%2Fcpython.git Fix name problem in previous checkin: Dict not List --- diff --git a/Include/dictobject.h b/Include/dictobject.h index 7fa400a5b272..3da1273dc34c 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -87,7 +87,7 @@ 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) +#define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type) PyAPI_FUNC(PyObject *) PyDict_New(void); PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);