diff options
author | Guido van Rossum <guido@python.org> | 1994-09-14 13:23:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-14 13:23:36 (GMT) |
commit | 956640880da20c20d5320477a0dcaf2026bd9426 (patch) | |
tree | 8c1f67d70244113e4239c8519fc4077d24976998 /Include/pythonrun.h | |
parent | f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f (diff) | |
download | cpython-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/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index f2b9541..0ac9fb5 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -44,6 +44,7 @@ struct _node *parse_file PROTO((FILE *, char *, int)); object *run_string PROTO((char *, int, object *, object *)); object *run_file PROTO((FILE *, char *, int, object *, object *)); +object *run_pyc_file PROTO((FILE *, char *, object *, object *)); object *compile_string PROTO((char *, char *, int)); |