Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e526fe commit cedd30bCopy full SHA for cedd30b
1 file changed
Lib/idlelib/PyShell.py
@@ -740,10 +740,13 @@ def __init__(self, noshell=1):
740
root.withdraw()
741
flist = PyShellFileList(root)
742
743
- dbg=OnDemandOutputWindow(flist)
744
- dbg.set_title('IDLE Debugging Messages')
745
- sys.stdout = PseudoFile(dbg,['stdout'])
746
- sys.stderr = PseudoFile(dbg,['stderr'])
+ # the following causes lockups and silent failures when debugging
+ # changes to EditorWindow.__init__ ; the console works fine for idle
+ # debugging in any case, so disable this unnescesary stuff.
+ #dbg=OnDemandOutputWindow(flist)
747
+ #dbg.set_title('IDLE Debugging Messages')
748
+ #sys.stdout = PseudoFile(dbg,['stdout'])
749
+ #sys.stderr = PseudoFile(dbg,['stderr'])
750
751
try:
752
self.server = protocol.Server(connection_hook = self.address_ok)
0 commit comments