cpython/Lib/idlelib/idle.py

13 lines
214 B
Python
Raw Normal View History

2000-08-15 01:13:23 +00:00
#! /usr/bin/env python
import os
import sys
import IdleConf
2001-07-12 04:51:11 +00:00
idle_dir = os.path.dirname(IdleConf.__file__)
2000-08-15 01:13:23 +00:00
IdleConf.load(idle_dir)
# defer importing Pyshell until IdleConf is loaded
import PyShell
PyShell.main()