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
test_whitespace_eater_unicode(): Make this test Python 2.1 compatible.
[python/dscho.git]
/
Lib
/
idlelib
/
idle
blob
c8a8feaf6ce82a9979de71b886ecc0afe95e37df
1
#!/usr/bin/python
2
3
try
:
4
import
idlelib
.
PyShell
5
except
ImportError
:
6
# IDLE is not installed, but maybe PyShell is on sys.path:
7
import
PyShell
8
PyShell
.
main
()
9
else
:
10
idlelib
.
PyShell
.
main
()