Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 2 | Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, |
| 3 | Amsterdam, The Netherlands. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 13 | distribution of the software without specific, written prior permission. |
| 14 | |
| 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | |
| 23 | ******************************************************************/ |
| 24 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 25 | /* Interfaces to parse and execute pieces of python code */ |
| 26 | |
| 27 | void initall PROTO((void)); |
| 28 | |
| 29 | int run PROTO((FILE *, char *)); |
| 30 | |
Guido van Rossum | 234f942 | 1993-06-17 12:35:49 +0000 | [diff] [blame] | 31 | int run_command PROTO((char *)); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 32 | int run_script PROTO((FILE *, char *)); |
| 33 | int run_tty_1 PROTO((FILE *, char *)); |
| 34 | int run_tty_loop PROTO((FILE *, char *)); |
| 35 | |
| 36 | int parse_string PROTO((char *, int, struct _node **)); |
| 37 | int parse_file PROTO((FILE *, char *, int, struct _node **)); |
| 38 | |
| 39 | object *eval_node PROTO((struct _node *, char *, object *, object *)); |
| 40 | |
| 41 | object *run_string PROTO((char *, int, object *, object *)); |
| 42 | object *run_file PROTO((FILE *, char *, int, object *, object *)); |
| 43 | object *run_err_node PROTO((int, struct _node *, char *, object *, object *)); |
| 44 | object *run_node PROTO((struct _node *, char *, object *, object *)); |
| 45 | |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 46 | object *compile_string PROTO((char *, char *, int)); |
| 47 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 48 | void print_error PROTO((void)); |
| 49 | |
| 50 | void goaway PROTO((int)); |