mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
11 lines
205 B
Python
Executable File
11 lines
205 B
Python
Executable File
#!/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()
|