David Scherer | 7aced17 | 2000-08-15 01:13:23 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python |
2 | |||||
Kurt B. Kaiser | f4f4276 | 2002-12-24 06:36:19 +0000 | [diff] [blame] | 3 | try: |
4 | import idlelib.PyShell | ||||
5 | idlelib.PyShell.main() | ||||
6 | except: | ||||
7 | # IDLE is not installed, but maybe PyShell is on sys.path: | ||||
8 | import PyShell | ||||
9 | PyShell.main() |