From: Terry Jan Reedy Date: Sun, 27 Oct 2019 01:15:10 +0000 (-0400) Subject: bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939) X-Git-Tag: v3.9.0a1~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3f90b217a5152275b180b466bd503658a734462;p=thirdparty%2FPython%2Fcpython.git bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939) --- diff --git a/Lib/idlelib/runscript.py b/Lib/idlelib/runscript.py index e99d0d2e027f..a54108794ab5 100644 --- a/Lib/idlelib/runscript.py +++ b/Lib/idlelib/runscript.py @@ -19,6 +19,7 @@ from idlelib.config import idleConf from idlelib import macosx from idlelib import pyshell from idlelib.query import CustomRun +from idlelib import outwin indent_message = """Error: Inconsistent indentation detected! @@ -46,6 +47,9 @@ class ScriptBinding: self.editwin.text_frame.bind('<>', self._run_module_event) def check_module_event(self, event): + if isinstance(self.editwin, outwin.OutputWindow): + self.editwin.text.bell() + return 'break' filename = self.getfilename() if not filename: return 'break' @@ -129,6 +133,9 @@ class ScriptBinding: module being executed and also add that directory to its sys.path if not already included. """ + if isinstance(self.editwin, outwin.OutputWindow): + self.editwin.text.bell() + return 'break' filename = self.getfilename() if not filename: return 'break' diff --git a/Misc/NEWS.d/next/IDLE/2019-10-26-18-16-24.bpo-38598.6kH9FY.rst b/Misc/NEWS.d/next/IDLE/2019-10-26-18-16-24.bpo-38598.6kH9FY.rst new file mode 100644 index 000000000000..5d04e4a79b62 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-10-26-18-16-24.bpo-38598.6kH9FY.rst @@ -0,0 +1 @@ +Do not try to compile IDLE shell or output windows