summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-12-26 00:19:28 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-12-26 00:19:28 (GMT)
commit6f3a24d0b373b4b35e832d6816c0b425188cbd5f (patch)
treef3982252ced6a7ccebec76b278eff1baa1a39a59 /Include/dictobject.h
parent694e3a4a9dd05cf101ff7dc6d5c76bf1771bafa9 (diff)
downloadcpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.zip
cpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.tar.gz
cpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.tar.bz2
reverting 2.29: the patch was Ok, but the commit msg wrong
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r--Include/dictobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 7fa400a..554b82e 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);