summaryrefslogtreecommitdiffstats
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-07 10:33:05 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-07 10:33:05 (GMT)
commit7a01389bc70000f959056cd2f1e8f1fe32a297eb (patch)
tree13cc1f4243236e4da317cef2d6146b6a145194b2 /Include/classobject.h
parent0908bacfa515fe81569a36d2296ef26760ffbe61 (diff)
downloadcpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.zip
cpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.tar.gz
cpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.tar.bz2
add 5th arg to instancebinop
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h
index ec57cdb..e0e46c5 100644
--- a/Include/classobject.h
+++ b/Include/classobject.h
@@ -71,7 +71,8 @@ extern object *instancemethodgetclass PROTO((object *));
extern int issubclass PROTO((object *, object *));
-extern object *instancebinop PROTO((object *, object *, char *, char *));
+extern object *instancebinop PROTO((object *, object *, char *, char *,
+ object * (*) PROTO((object *, object *)) ));
#ifdef __cplusplus
}