Initial revision

This commit is contained in:
David Scherer 2000-08-15 01:13:23 +00:00
parent 33a6da9971
commit 7aced17437
73 changed files with 12383 additions and 0 deletions

12
Lib/idlelib/idle.py Normal file
View file

@ -0,0 +1,12 @@
#! /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()