blob: 0d4e85fdf0944399e430830ec9c0228fc06b7689 [file] [log] [blame]
#!/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()