summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-06 17:16:05 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-06 17:16:05 (GMT)
commit9cb083b957ad16183e2b74f8090f77ffe11c8feb (patch)
tree96422800597df679126ab129a8ed9569f954b64d
parent6f3fceb8d8d05039c18439cec96158b585d737a8 (diff)
downloadcpython-9cb083b957ad16183e2b74f8090f77ffe11c8feb.zip
cpython-9cb083b957ad16183e2b74f8090f77ffe11c8feb.tar.gz
cpython-9cb083b957ad16183e2b74f8090f77ffe11c8feb.tar.bz2
Defer all the work to idle.py, which has recently become too
complicated to copy in-line here.
-rw-r--r--Tools/idle/idle.pyw3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/idle/idle.pyw b/Tools/idle/idle.pyw
index a1fc021..79fe26f 100644
--- a/Tools/idle/idle.pyw
+++ b/Tools/idle/idle.pyw
@@ -1,6 +1,5 @@
try:
- import PyShell
- PyShell.main()
+ import idle
except SystemExit:
raise
except: