Allow mac user to set "command line flags" by option-starting python.
diff --git a/Python/pythonmain.c b/Python/pythonmain.c
index 64aae7a..000a3d7 100644
--- a/Python/pythonmain.c
+++ b/Python/pythonmain.c
@@ -65,6 +65,10 @@
 	if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0')
 		unbuffered = 1;
 
+#ifdef macintosh
+	PyMac_InteractiveOptions(&inspect, &verbose, &suppress_print, &unbuffered, &debugging);
+#endif
+
 	while ((c = getopt(argc, argv, "c:disuv")) != EOF) {
 		if (c == 'c') {
 			/* -c is the last option; following arguments