Kaydet (Commit) 7663729e authored tarafından Kurt B. Kaiser's avatar Kurt B. Kaiser

There was an error in the Tk error dialog fix at Rev 1.84 which caused starting

w/o the subprocess to fail.  Check in a fix to IDLE and IDLEfork.

M PyShell.py

Backport candidate, combine with previous.
üst d6ab77d2
......@@ -926,7 +926,7 @@ class PyShell(OutputWindow):
client = self.interp.start_subprocess()
if not client:
self.close()
return None
return False
else:
nosub = "==== No Subprocess ===="
self.write("Python %s on %s\n%s\n%s\nIDLE %s %s\n" %
......@@ -935,7 +935,7 @@ class PyShell(OutputWindow):
self.showprompt()
import Tkinter
Tkinter._default_root = None # 03Jan04 KBK What's this?
return client
return True
def readline(self):
save = self.reading
......
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