diff options
author | Guido van Rossum <guido@python.org> | 1995-01-07 10:33:05 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-07 10:33:05 +0000 |
commit | 7a01389bc70000f959056cd2f1e8f1fe32a297eb (patch) | |
tree | 13cc1f4243236e4da317cef2d6146b6a145194b2 /Include/classobject.h | |
parent | added func_doc (diff) | |
download | cpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.tar.gz cpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.tar.bz2 cpython-7a01389bc70000f959056cd2f1e8f1fe32a297eb.zip |
add 5th arg to instancebinop
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index ec57cdb511b..e0e46c54e9e 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 } |