diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-12-26 00:19:28 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-12-26 00:19:28 (GMT) |
commit | 6f3a24d0b373b4b35e832d6816c0b425188cbd5f (patch) | |
tree | f3982252ced6a7ccebec76b278eff1baa1a39a59 | |
parent | 694e3a4a9dd05cf101ff7dc6d5c76bf1771bafa9 (diff) | |
download | cpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.zip cpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.tar.gz cpython-6f3a24d0b373b4b35e832d6816c0b425188cbd5f.tar.bz2 |
reverting 2.29: the patch was Ok, but the commit msg wrong
-rw-r--r-- | Include/dictobject.h | 1 |
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); |