mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
9cb083b957
complicated to copy in-line here.
9 lines
144 B
Python
9 lines
144 B
Python
try:
|
|
import idle
|
|
except SystemExit:
|
|
raise
|
|
except:
|
|
import traceback
|
|
traceback.print_exc()
|
|
raw_input("Hit return to exit...")
|