0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 17:47:13 +01:00
cpython/Tools/idle/idle.pyw
Guido van Rossum 9cb083b957 Defer all the work to idle.py, which has recently become too
complicated to copy in-line here.
2000-03-06 17:16:05 +00:00

9 lines
144 B
Python

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