summaryrefslogtreecommitdiffstats
path: root/Tools/idle/idle.pyw
blob: a1fc021aedc1c0aebe553133a2bb6f0804c9d059 (plain)
1
2
3
4
5
6
7
8
9
try:
    import PyShell
    PyShell.main()
except SystemExit:
    raise
except:
    import traceback
    traceback.print_exc()
    raw_input("Hit return to exit...")