diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-09-19 19:54:55 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-09-19 19:54:55 (GMT) |
commit | 16849a7e5308dc07f14847d1691a533fe26d729a (patch) | |
tree | 28cc9d67cf8ac0afcb42102c6321d6a1d9c7c60c | |
parent | 7ccd30fa438ff5518752b34cadb41dd1c12d6032 (diff) | |
download | cpython-16849a7e5308dc07f14847d1691a533fe26d729a.zip cpython-16849a7e5308dc07f14847d1691a533fe26d729a.tar.gz cpython-16849a7e5308dc07f14847d1691a533fe26d729a.tar.bz2 |
SF Bug #611225.
Bring idle.pyw into alignment with idle.py, eliminate calling deleted
module IdleConf.py
-rw-r--r-- | Lib/idlelib/idle.pyw | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/idlelib/idle.pyw b/Lib/idlelib/idle.pyw index 71fdce5..8638a16 100644 --- a/Lib/idlelib/idle.pyw +++ b/Lib/idlelib/idle.pyw @@ -1,12 +1,4 @@ #! /usr/bin/env python -import os -import sys -import IdleConf - -idle_dir = os.path.split(sys.argv[0])[0] -IdleConf.load(idle_dir) - -# defer importing Pyshell until IdleConf is loaded import PyShell PyShell.main() |