mirror of
https://github.com/python/cpython.git
synced 2025-10-22 09:23:54 +00:00
9 lines
199 B
Python
9 lines
199 B
Python
#!/usr/bin/python
|
|
|
|
try:
|
|
import idlelib.PyShell
|
|
idlelib.PyShell.main()
|
|
except ImportError:
|
|
# IDLE is not installed, but maybe PyShell is on sys.path:
|
|
import PyShell
|
|
PyShell.main()
|