Under CodeWarrior, make the window go away on exit(0)
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 980f2ed..c0214fc 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -48,6 +48,10 @@
 #include <console.h>
 #endif
 
+#ifdef __MWERKS__
+#include <SIOUX.h>
+#endif
+
 extern char *getpythonpath();
 
 extern grammar gram; /* From graminit.c */
@@ -641,10 +645,17 @@
 	}
 #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;
+#endif
 	exit(sts);
 #endif /* WITH_THREAD */
 	/*NOTREACHED*/