diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-27 13:22:14 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-27 13:22:14 +0000 |
commit | 63970cd14603cfdb3ba94bf0995d64655ca54a66 (patch) | |
tree | b6802a52542b90756795efd2043a9c32a6c21efc /Python/pythonrun.c | |
parent | 02f27a4fb349cfcaa5e38514e4c8de94d00c9a0e (diff) | |
download | cpython-63970cd14603cfdb3ba94bf0995d64655ca54a66.tar.gz |
Moved mac-specific exit handling to macmain.c
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 9e402a6228..13e2728e3a 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -45,14 +45,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <signal.h> #endif -#ifdef THINK_C -#include <console.h> -#endif - -#ifdef __MWERKS__ -#include <SIOUX.h> -#endif - #ifdef NT #undef BYTE #include "windows.h" @@ -670,20 +662,11 @@ goaway(sts) } #endif /* TRACE_REFS */ - /* XXXX Jack thinks it would be nicer to pause if any output has - ** been generated since the last interaction with the user... - */ -#ifdef THINK_C - if (sts == 0) - console_options.pause_atexit = 0; -#endif -#ifdef __MWERKS__ - if (sts == 0) - SIOUXSettings.autocloseonquit = 1; - else - printf("\n[Terminated]\n"); -#endif +#ifdef macintosh + PyMac_Exit(sts); +#else exit(sts); +#endif #endif /* WITH_THREAD */ /*NOTREACHED*/ } |