diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2001-07-14 04:51:06 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2001-07-14 04:51:06 (GMT) |
commit | 8bf5b2027aac3c614657794ab1c38827755b092a (patch) | |
tree | 49e7778d650cc6c042219a59c30c2175896254a4 /Lib | |
parent | df8a40fbf57b7dd794803365a856b1f0f235d915 (diff) | |
download | cpython-8bf5b2027aac3c614657794ab1c38827755b092a.zip cpython-8bf5b2027aac3c614657794ab1c38827755b092a.tar.gz cpython-8bf5b2027aac3c614657794ab1c38827755b092a.tar.bz2 |
py-cvs-2001_07_13 (Rel 1.7) 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')
-rw-r--r-- | Lib/idlelib/IdleConf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/IdleConf.py b/Lib/idlelib/IdleConf.py index 37f4ef1..8eaa8e0 100644 --- a/Lib/idlelib/IdleConf.py +++ b/Lib/idlelib/IdleConf.py @@ -110,3 +110,4 @@ def load(dir): os.path.join(homedir, ".idle"))) idleconf = IdleConfParser() +load(os.path.dirname(__file__)) |