Added stuff so CodeWarrior isn't so verbose about its stdio windows
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index 4bf193e..d13c883 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -41,6 +41,10 @@
 #include <console.h>
 #endif
 
+#ifdef __MWERKS__
+#include <SIOUX.h>
+#endif
+
 char *fileargument;
 
 main(argc, argv)
@@ -64,6 +68,11 @@
 	   a better way!) */
 	printf("\n");   
 #endif
+#ifdef __MWERKS__
+	SIOUXSettings.asktosaveonclose = 0;
+	SIOUXSettings.showstatusline = 0;
+	SIOUXSettings.tabspaces = 4;
+#endif
 	/* Use STDWIN's wargs() to set argc/argv to list of files to open */
 	wargs(&argc, &argv);
 	/* Put About Python... in Apple menu */