summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2001-07-14 04:51:06 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2001-07-14 04:51:06 (GMT)
commit8bf5b2027aac3c614657794ab1c38827755b092a (patch)
tree49e7778d650cc6c042219a59c30c2175896254a4 /Lib
parentdf8a40fbf57b7dd794803365a856b1f0f235d915 (diff)
downloadcpython-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.py1
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__))