blob: 0d4e85fdf0944399e430830ec9c0228fc06b7689 [file] [log] [blame]
Kurt B. Kaiser7cca3d82002-12-31 23:18:00 +00001#!/usr/bin/python
David Scherer7aced172000-08-15 01:13:23 +00002
Kurt B. Kaiserf4f42762002-12-24 06:36:19 +00003try:
4 import idlelib.PyShell
5 idlelib.PyShell.main()
Kurt B. Kaiser7cca3d82002-12-31 23:18:00 +00006except ImportError:
Kurt B. Kaiserf4f42762002-12-24 06:36:19 +00007 # IDLE is not installed, but maybe PyShell is on sys.path:
8 import PyShell
9 PyShell.main()