Commit d797e7b5 authored by Just van Rossum's avatar Just van Rossum

Fixed age-old beginner's error: don't start the main loop as a side

effect of an import. (This is one step towards threading support in
the IDE.)
parent 320a1b04
......@@ -48,4 +48,5 @@ def init():
init()
del init
import PythonIDEMain
import PythonIDEMain as _PythonIDEMain
_PythonIDEMain.PythonIDE()
......@@ -463,7 +463,3 @@ class PythonIDE(Wapplication.Application):
except (ImportError, MacOS.Error), arg:
pass # W.Message("Cannot register Python Documentation: %s" % str(arg))
return has_help, has_doc
PythonIDE()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment