summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-17 21:28:08 (GMT)
committerGuido van Rossum <guido@python.org>2001-01-17 21:28:08 (GMT)
commit722642902e19513fd9d9f5bc9d01f04c8fc7f4c7 (patch)
treecec2791338206cd3adc09446d271f41d309dcfeb /Include/object.h
parent44a6ff6cf49a8b0503f4598a398c71364e183ccc (diff)
downloadcpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.zip
cpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.tar.gz
cpython-722642902e19513fd9d9f5bc9d01f04c8fc7f4c7.tar.bz2
Get rid of the declaration for _PyCompareState_Key.
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h3
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*);