diff options
author | Guido van Rossum <guido@python.org> | 2001-01-17 21:28:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-17 21:28:08 (GMT) |
commit | 722642902e19513fd9d9f5bc9d01f04c8fc7f4c7 (patch) | |
tree | cec2791338206cd3adc09446d271f41d309dcfeb | |
parent | 44a6ff6cf49a8b0503f4598a398c71364e183ccc (diff) | |
download | cpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.zip cpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.tar.gz cpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.tar.bz2 |
Get rid of the declaration for _PyCompareState_Key.
-rw-r--r-- | Include/object.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/object.h b/Include/object.h index 515ce12..818786a 100644 --- a/Include/object.h +++ b/Include/object.h @@ -287,9 +287,6 @@ extern DL_IMPORT(int) PyNumber_CoerceEx(PyObject **, PyObject **); extern DL_IMPORT(int) Py_ReprEnter(PyObject *); extern DL_IMPORT(void) Py_ReprLeave(PyObject *); -/* tstate dict key for PyObject_Compare helper */ -extern PyObject *_PyCompareState_Key; - /* Helpers for hash functions */ extern DL_IMPORT(long) _Py_HashDouble(double); extern DL_IMPORT(long) _Py_HashPointer(void*); |