diff options
-rw-r--r-- | Python/pythonmain.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 @@ realmain(argc, argv) 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 |