From: Guido van Rossum Date: Wed, 17 Jan 2001 21:28:08 +0000 (+0000) Subject: Get rid of the declaration for _PyCompareState_Key. X-Git-Tag: v2.1a1~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=722642902e19513fd9d9f5bc9d01f04c8fc7f4c7;p=python Get rid of the declaration for _PyCompareState_Key. --- diff --git a/Include/object.h b/Include/object.h index 515ce1270b..818786a738 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*);