aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-01-29 10:51:46 -0800
committerGitHub <noreply@github.com>2021-01-29 13:51:46 -0500
commitbf782b2636880dd634281f905ae43b8555450ee2 (patch)
tree2b117450176bf75ebea2234e8d4f668b24127195
parentbpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163) (diff)
downloadcpython-bf782b2636880dd634281f905ae43b8555450ee2.tar.gz
cpython-bf782b2636880dd634281f905ae43b8555450ee2.tar.bz2
cpython-bf782b2636880dd634281f905ae43b8555450ee2.zip
bpo-43008: Add 'Patch by Ken Hilton' (GH-24370) (#24374)
(cherry picked from commit 11d75ec807f05eff1148c049e38b808d11c23b8a) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r--Lib/idlelib/NEWS.txt2
-rw-r--r--Misc/NEWS.d/next/IDLE/2021-01-26-18-12-17.bpo-43008.mbQUc7.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index e7d2f16e7a5..4bc4aefd1ac 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -7,7 +7,7 @@ bpo-23544: Disable Debug=>Stack Viewer when user code is running or
Debugger is active, to prevent hang or crash. Patch by Zackery Spytz.
bpo-43008: Make IDLE invoke :func:`sys.excepthook` in normal,
-2-process mode.
+2-process mode. Patch by Ken Hilton.
bpo-33065: Fix problem debugging user classes with __repr__ method.
diff --git a/Misc/NEWS.d/next/IDLE/2021-01-26-18-12-17.bpo-43008.mbQUc7.rst b/Misc/NEWS.d/next/IDLE/2021-01-26-18-12-17.bpo-43008.mbQUc7.rst
index 3e0b80a909d..55ab67ca949 100644
--- a/Misc/NEWS.d/next/IDLE/2021-01-26-18-12-17.bpo-43008.mbQUc7.rst
+++ b/Misc/NEWS.d/next/IDLE/2021-01-26-18-12-17.bpo-43008.mbQUc7.rst
@@ -1 +1,2 @@
Make IDLE invoke :func:`sys.excepthook` in normal, 2-process mode.
+Patch by Ken Hilton.