home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_Tools_idle_idle.py < prev    next >
Encoding:
Python Source  |  2001-07-26  |  226 b   |  13 lines

  1. #! /usr/bin/env python
  2.  
  3. import os
  4. import sys
  5. import IdleConf
  6.  
  7. idle_dir = os.path.dirname(IdleConf.__file__)
  8. IdleConf.load(idle_dir)
  9.  
  10. # defer importing Pyshell until IdleConf is loaded
  11. import PyShell
  12. PyShell.main()
  13.