13 lines
209 B
Python
13 lines
209 B
Python
|
#! /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()
|