diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-01-06 16:48:49 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-01-06 16:48:49 (GMT) |
commit | 6b02ac23210859a416b1d90f5afb3e4e910779d0 (patch) | |
tree | b0eca5db23689f3d090622e91d6899fa0a5f03c3 /Mac/Lib/pythonprefs.py | |
parent | c4586387f6d7e4f0fc07d9bcc39e25d29e8d3c4e (diff) | |
download | cpython-6b02ac23210859a416b1d90f5afb3e4e910779d0.zip cpython-6b02ac23210859a416b1d90f5afb3e4e910779d0.tar.gz cpython-6b02ac23210859a416b1d90f5afb3e4e910779d0.tar.bz2 |
I give in. Now Tk is also using resources just above 128, so Python
now uses only 228-256, leaving 128-228 free for others. This mod
affects prefs files, libraries and almost everything else, so I've
upped my local Python to 1.5b4 to remain sane.
Diffstat (limited to 'Mac/Lib/pythonprefs.py')
-rw-r--r-- | Mac/Lib/pythonprefs.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Mac/Lib/pythonprefs.py b/Mac/Lib/pythonprefs.py index 3bf8952..40a2dd2 100644 --- a/Mac/Lib/pythonprefs.py +++ b/Mac/Lib/pythonprefs.py @@ -4,15 +4,15 @@ from preferences import * PREFNAME_NAME="PythonPreferenceFileName" # Resource IDs in the preferences file -PATH_ID = 128 -DIR_ID = 128 -POPT_ID = 128 +PATH_ID = 228 +DIR_ID = 228 +POPT_ID = 228 GUSI_ID = 10240 # Override IDs (in the applet) -OVERRIDE_PATH_ID = 129 -OVERRIDE_DIR_ID = 129 -OVERRIDE_POPT_ID = 129 +OVERRIDE_PATH_ID = 229 +OVERRIDE_DIR_ID = 229 +OVERRIDE_POPT_ID = 229 OVERRIDE_GUSI_ID = 10241 # version |