Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
8e92bf7699ac3617d3a0a9a55a38f642f5a6ecc6
/
.
/
Lib
/
idlelib
/
idle.pyw
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
()