mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
"Compiling" version
This commit is contained in:
parent
226d79eb4a
commit
3f5da24ea3
72 changed files with 3363 additions and 2061 deletions
23
Include/pythonrun.h
Normal file
23
Include/pythonrun.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/* Interfaces to parse and execute pieces of python code */
|
||||
|
||||
void initall PROTO((void));
|
||||
|
||||
int run PROTO((FILE *, char *));
|
||||
|
||||
int run_script PROTO((FILE *, char *));
|
||||
int run_tty_1 PROTO((FILE *, char *));
|
||||
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 *));
|
||||
|
||||
void print_error PROTO((void));
|
||||
|
||||
void goaway PROTO((int));
|
Loading…
Add table
Add a link
Reference in a new issue