blob: 2a854978a5da559aa04e4956ddf58b05e3ac64af [file] [log] [blame]
Steven M. Gavad7b6ed22001-06-25 07:23:57 +00001#! /usr/bin/env python
2
3import os
4import sys
5from idlelib import IdleConf
6
7idle_dir = os.path.dirname(IdleConf.__file__)
8IdleConf.load(idle_dir)
9
10# defer importing Pyshell until IdleConf is loaded
11from idlelib import PyShell
12PyShell.main()