diff options
author | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 +0000 |
commit | 44cda284f5c61005bd1ae2a3237ceeb6cf47973e (patch) | |
tree | fe5335a54c24716da290a240c2355915b91194ca /Include/classobject.h | |
parent | 8a2427abb7bcbcf890c877610ed0392fa35f4722 (diff) | |
download | cpython-44cda284f5c61005bd1ae2a3237ceeb6cf47973e.tar.gz |
ceval.h: added Py_MakePendingCalls()
classobject.h: added instancebinop()
modsupport.h: added newgetargs()
rename1.h: removed Py_FPROTO
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index 6024dbaff6..227c9141f2 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -71,6 +71,8 @@ extern object *instancemethodgetclass PROTO((object *)); extern int issubclass PROTO((object *, object *)); +extern object *instancebinop PROTO((object *, object *, char *, char *)); + #ifdef __cplusplus } #endif |