[Idle-dev] CVS: idle idle.pyw,1.2,1.3

Kurt B. Kaiser kbk@users.sourceforge.net
Thu, 19 Sep 2002 12:54:58 -0700


Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv31429

Modified Files:
	idle.pyw 
Log Message:
SF Bug #611225.
Bring idle.pyw into alignment with idle.py, eliminate calling deleted
module IdleConf.py


Index: idle.pyw
===================================================================
RCS file: /cvsroot/idlefork/idle/idle.pyw,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** idle.pyw	4 Jul 2001 03:15:10 -0000	1.2
--- idle.pyw	19 Sep 2002 19:54:55 -0000	1.3
***************
*** 1,12 ****
  #! /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()
--- 1,4 ----