repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump version number to 2.4.2 to pick up the latest minor bug fixes.
[python/dscho.git]
/
Tools
/
idle
/
idle
blob
2a854978a5da559aa04e4956ddf58b05e3ac64af
1
#! /usr/bin/env python
2
3
import
os
4
import
sys
5
from
idlelib
import
IdleConf
6
7
idle_dir
=
os
.
path
.
dirname
(
IdleConf
.__
file
__
)
8
IdleConf
.
load
(
idle_dir
)
9
10
# defer importing Pyshell until IdleConf is loaded
11
from
idlelib
import
PyShell
12
PyShell
.
main
()