diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-11 01:08:04 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-02-11 01:08:04 (GMT) |
commit | 8a38714ba05a3734f812bb1bbebdc527732a22bc (patch) | |
tree | 90f53048b00a22476549e1ef3c38470fca66e3c7 /Mac/Resources | |
parent | 6a9aec47b72cf42bed0f845e751eb243f85b43d6 (diff) | |
download | cpython-8a38714ba05a3734f812bb1bbebdc527732a22bc.zip cpython-8a38714ba05a3734f812bb1bbebdc527732a22bc.tar.gz cpython-8a38714ba05a3734f812bb1bbebdc527732a22bc.tar.bz2 |
Bit the bullet and added a private GUSISIOUX for Python. This makes the delayconsole and keepopen code neater. Also tells Sioux to behave better with events, and handles cmd-. during print better. The pythonpreferences have also changed due to this.
Diffstat (limited to 'Mac/Resources')
-rw-r--r-- | Mac/Resources/pythonpath.r | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/Resources/pythonpath.r b/Mac/Resources/pythonpath.r index 2739b19..b127d9f 100644 --- a/Mac/Resources/pythonpath.r +++ b/Mac/Resources/pythonpath.r @@ -25,6 +25,7 @@ type 'Popt' { byte newStandardExceptions = 0, oldStandardExceptions = 1; byte sitePython = 0, noSitePython = 1; byte navService = 0, noNavService = 1; + byte noDelayConsole = 0, delayConsole = 1; }; type 'TMPL' { @@ -53,6 +54,7 @@ resource 'TMPL' (PYTHONOPTIONS_ID, "Popt") { "Old standard exceptions", 'DBYT', "No site-python support", 'DBYT', "No NavServices in macfs", 'DBYT', + "Delay console window", 'DBYT', } }; @@ -72,6 +74,7 @@ resource 'Popt' (PYTHONOPTIONS_ID, "Options") { newStandardExceptions, sitePython, navService, + noDelayConsole, }; /* The sys.path initializer */ |