cpython/Tools/idle/idle.pyw

10 lines
166 B
Python

try:
import PyShell
PyShell.main()
except SystemExit:
raise
except:
import traceback
traceback.print_exc()
raw_input("Hit return to exit...")