diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2001-07-14 05:21:37 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2001-07-14 05:21:37 (GMT) |
commit | 7711b5f4322b73ec6f7da519a7d80fde7608ea79 (patch) | |
tree | 5fff332fd40e40a95a3e2567703235f6b44f44d8 /Lib/idlelib | |
parent | 40610547be1ee38991a9d0715ab36803c65a1b25 (diff) | |
download | cpython-7711b5f4322b73ec6f7da519a7d80fde7608ea79.zip cpython-7711b5f4322b73ec6f7da519a7d80fde7608ea79.tar.gz cpython-7711b5f4322b73ec6f7da519a7d80fde7608ea79.tar.bz2 |
py-cvs-2001_07_13 (Rev 1.4) merge
"Move the action of loading the configuration to the IdleConf module
rather than the idle.py script. This has advantages and
disadvantages; the biggest advantage being that we can more easily
have an alternative main program." --GvR
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/idle.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py index f42327c..8638a16 100644 --- a/Lib/idlelib/idle.py +++ b/Lib/idlelib/idle.py @@ -1,12 +1,4 @@ #! /usr/bin/env python -import os -import sys -import IdleConf - -idle_dir = os.path.dirname(IdleConf.__file__) -IdleConf.load(idle_dir) - -# defer importing Pyshell until IdleConf is loaded import PyShell PyShell.main() |