mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Initial revision
This commit is contained in:
parent
33a6da9971
commit
7aced17437
73 changed files with 12383 additions and 0 deletions
12
Lib/idlelib/idle.py
Normal file
12
Lib/idlelib/idle.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue