blob: 131e8d3694a5744d8295b30f932588b6352f075d [file] [log] [blame]
David Scherer7aced172000-08-15 01:13:23 +00001#! /usr/bin/env python
2
Kurt B. Kaiserf4f42762002-12-24 06:36:19 +00003try:
4 import idlelib.PyShell
5 idlelib.PyShell.main()
6except:
7 # IDLE is not installed, but maybe PyShell is on sys.path:
8 import PyShell
9 PyShell.main()