Sign in
android
/
platform
/
external
/
python
/
018d7466f1bafd2b44e928bb6eb3fd6bcf4b6018
/
.
/
Lib
/
idlelib
/
idle
blob: c8a8feaf6ce82a9979de71b886ecc0afe95e37df [
file
] [
log
] [
blame
]
#!/usr/bin/python
try
:
import
idlelib
.
PyShell
except
ImportError
:
# IDLE is not installed, but maybe PyShell is on sys.path:
import
PyShell
PyShell
.
main
()
else
:
idlelib
.
PyShell
.
main
()