Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
48a433cfda8a3bb293b2d3a1dfea3492f2b75eb7
/
.
/
Tools
/
idle
/
idle
blob: 2a854978a5da559aa04e4956ddf58b05e3ac64af [
file
]
#! /usr/bin/env python
import
os
import
sys
from
idlelib
import
IdleConf
idle_dir
=
os
.
path
.
dirname
(
IdleConf
.
__file__
)
IdleConf
.
load
(
idle_dir
)
# defer importing Pyshell until IdleConf is loaded
from
idlelib
import
PyShell
PyShell
.
main
()