From 87c1afa057f795cecf197d9d2ec09e8e097b2601 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Fri, 26 Dec 2003 17:17:49 +0000 Subject: [PATCH] Fix name problem in previous checkin: Dict not List --- Include/dictobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/dictobject.h b/Include/dictobject.h index 7fa400a5b2..3da1273dc3 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); -- 2.50.1