summaryrefslogtreecommitdiff
path: root/Include/object.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-16 19:34:46 +0000
committerBenjamin Peterson <benjamin@python.org>2008-10-16 19:34:46 +0000
commit60192084c405292f874d886eed05ed83614d20c4 (patch)
tree390e2ac0930a866fb1a97d35b469109f09df3ecc /Include/object.h
parentaaebe1c11d0eccc067cb6e5bb4e28543441fd2df (diff)
downloadcpython-git-60192084c405292f874d886eed05ed83614d20c4.tar.gz
remove some more references to __cmp__ #1717
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 bddfb6fe36..16708f9f9b 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -447,9 +447,6 @@ PyAPI_FUNC(int) PyCallable_Check(PyObject *);
PyAPI_FUNC(void) PyObject_ClearWeakRefs(PyObject *);
-/* A slot function whose address we need to compare */
-extern int _PyObject_SlotCompare(PyObject *, PyObject *);
-
/* PyObject_Dir(obj) acts like Python builtins.dir(obj), returning a
list of strings. PyObject_Dir(NULL) is like builtins.dir(),