blob: 131e8d3694a5744d8295b30f932588b6352f075d [file] [log] [blame]
#! /usr/bin/env python
try:
import idlelib.PyShell
idlelib.PyShell.main()
except:
# IDLE is not installed, but maybe PyShell is on sys.path:
import PyShell
PyShell.main()