Staging
v0.8.1
Raw File
idle.pyw
try:
    import idle
except SystemExit:
    raise
except:
    import traceback
    traceback.print_exc()
    raw_input("Hit return to exit...")
back to top