cpython/Tools/idle/idle.py

13 lines
214 B
Python
Raw Normal View History

1998-10-10 15:58:15 -03:00
#! /usr/bin/env python
import os
import sys
import IdleConf
idle_dir = os.path.dirname(IdleConf.__file__)
IdleConf.load(idle_dir)
# defer importing Pyshell until IdleConf is loaded
1998-10-10 15:58:15 -03:00
import PyShell
PyShell.main()