summaryrefslogtreecommitdiffstats
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-01 16:28:59 (GMT)
committerGuido van Rossum <guido@python.org>1993-11-01 16:28:59 (GMT)
commitb73cc04e625511f41c63b880b418338af70dc8bd (patch)
tree63cf9aafbb16fd57f988e88f217c27660dc66197 /Include/pythonrun.h
parentc7a22703e71f6074818e4661b0bbb57bbd726af7 (diff)
downloadcpython-b73cc04e625511f41c63b880b418338af70dc8bd.zip
cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.gz
cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.bz2
* ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c,
pythonrun.c: added static forward declarations * pythonrun.h, ceval.h, longobject.h, node.h: removed declarations of static routines
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index cc5bb05..e25a3de 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -42,12 +42,8 @@ int run_tty_loop PROTO((FILE *, char *));
int parse_string PROTO((char *, int, struct _node **));
int parse_file PROTO((FILE *, char *, int, struct _node **));
-object *eval_node PROTO((struct _node *, char *, object *, object *));
-
object *run_string PROTO((char *, int, object *, object *));
object *run_file PROTO((FILE *, char *, int, object *, object *));
-object *run_err_node PROTO((int, struct _node *, char *, object *, object *));
-object *run_node PROTO((struct _node *, char *, object *, object *));
object *compile_string PROTO((char *, char *, int));