summaryrefslogtreecommitdiffstats
path: root/Include/ceval.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-09-14 13:23:36 (GMT)
committerGuido van Rossum <guido@python.org>1994-09-14 13:23:36 (GMT)
commit956640880da20c20d5320477a0dcaf2026bd9426 (patch)
tree8c1f67d70244113e4239c8519fc4077d24976998 /Include/ceval.h
parentf5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f (diff)
downloadcpython-956640880da20c20d5320477a0dcaf2026bd9426.zip
cpython-956640880da20c20d5320477a0dcaf2026bd9426.tar.gz
cpython-956640880da20c20d5320477a0dcaf2026bd9426.tar.bz2
pythonrun.h: added run_pyc_file
ceval.h: added Py_AddPendingCall rest: modules using the new naming scheme must now include Python.h
Diffstat (limited to 'Include/ceval.h')
-rw-r--r--Include/ceval.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 3b16085..695c0c7 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -40,6 +40,8 @@ object *getframe PROTO((void));
void printtraceback PROTO((object *));
void flushline PROTO((void));
+int Py_AddPendingCall PROTO((int (*func) PROTO((ANY *)), ANY *arg));
+
/* Interface for threads.