diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 11bd029..4b58bb4 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -403,7 +403,7 @@ run_node(n, filename, globals, locals) return v; } -object * +static object * run_pyc_file(fp, filename, globals, locals) FILE *fp; char *filename; @@ -534,6 +534,9 @@ fatal(msg) char *msg; { fprintf(stderr, "Fatal Python error: %s\n", msg); +#ifdef macintosh + for (;;); +#endif abort(); } |