diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-27 01:32:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-27 01:32:11 (GMT) |
commit | 849b1b9f6c538085839f8059e0d6a5536d2fdb52 (patch) | |
tree | 41207de192401239c1424e47e7f0787f6ab497e7 | |
parent | 334fc923b3a7a8d0d163692befd2a27b98b481df (diff) | |
download | cpython-849b1b9f6c538085839f8059e0d6a5536d2fdb52.zip cpython-849b1b9f6c538085839f8059e0d6a5536d2fdb52.tar.gz cpython-849b1b9f6c538085839f8059e0d6a5536d2fdb52.tar.bz2 |
bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939)
(cherry picked from commit e3f90b217a5152275b180b466bd503658a734462)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r-- | Lib/idlelib/runscript.py | 7 | ||||
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-10-26-18-16-24.bpo-38598.6kH9FY.rst | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Lib/idlelib/runscript.py b/Lib/idlelib/runscript.py index e99d0d2..a541087 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('<<run-module-event-2>>', 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 0000000..5d04e4a --- /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 |