summaryrefslogtreecommitdiff
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-07 10:33:05 +0000
committerGuido van Rossum <guido@python.org>1995-01-07 10:33:05 +0000
commit6cb9db86b17ea8df0001f0c21bc6746a4e400a45 (patch)
tree4a9d7ae58ed88ba9ffc6a5d043337b3cbd05ee72 /Include/classobject.h
parent4f87f76ed55dd6b38be0d586ee72327840412208 (diff)
downloadcpython-6cb9db86b17ea8df0001f0c21bc6746a4e400a45.tar.gz
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 ec57cdb511..e0e46c54e9 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
}