home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / MacHacksBug / Python 1.5.2c1 / Tools / idle / idle.pyw < prev    next >
Encoding:
Text File  |  2000-06-23  |  166 b   |  10 lines

  1. try:
  2.     import PyShell
  3.     PyShell.main()
  4. except SystemExit:
  5.     raise
  6. except:
  7.     import traceback
  8.     traceback.print_exc()
  9.     raw_input("Hit return to exit...")
  10.