diff options
author | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 (GMT) |
commit | c5d92e12717d49f94820dd1524a75e771b57ad59 (patch) | |
tree | 332f19c789c720bdf2e4b8bd8f3d5e4771bfb601 /Include/ceval.h | |
parent | 6c849697fd0085ea4415b7ef5bdef30e734092b2 (diff) | |
download | cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.zip cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.tar.gz cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.tar.bz2 |
ceval.h: added Py_MakePendingCalls()
classobject.h: added instancebinop()
modsupport.h: added newgetargs()
rename1.h: removed Py_FPROTO
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 695c0c7..7002dd4 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -41,6 +41,7 @@ void printtraceback PROTO((object *)); void flushline PROTO((void)); int Py_AddPendingCall PROTO((int (*func) PROTO((ANY *)), ANY *arg)); +int Py_MakePendingCalls PROTO((void)); /* Interface for threads. |