From: Terry Jan Reedy Date: Fri, 29 Jan 2021 18:02:05 +0000 (-0500) Subject: bpo-43008: Add 'Patch by Ken Hilton' (GH-24370) X-Git-Tag: v3.10.0a5~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11d75ec807f05eff1148c049e38b808d11c23b8a;p=thirdparty%2FPython%2Fcpython.git bpo-43008: Add 'Patch by Ken Hilton' (GH-24370) --- diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 87024c00a858..840fc622ca95 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 3e0b80a909d7..55ab67ca9495 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.