home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_Tools_idle_idle.pyw < prev    next >
Encoding:
Text File  |  2001-07-26  |  152 b   |  9 lines

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