From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 6 Dec 2020 17:00:57 +0000 (-0800) Subject: [3.9] bpo-42576: Clarify only debug builds are affected in news (GH-23663) (GH-23666) X-Git-Tag: v3.9.1~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8502d46e3649bedf6b58a30b0a4b6b726e32b84b;p=thirdparty%2FPython%2Fcpython.git [3.9] bpo-42576: Clarify only debug builds are affected in news (GH-23663) (GH-23666) (cherry picked from commit 6a7fb9d31bce8590e30c44458d1fc1da4539743d) Co-authored-by: kj <28750310+Fidget-Spinner@users.noreply.github.com> Automerge-Triggered-By: GH:gvanrossum --- diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-12-05-22-34-47.bpo-42576.lEeEl7.rst b/Misc/NEWS.d/next/Core and Builtins/2020-12-05-22-34-47.bpo-42576.lEeEl7.rst index 7290b47dcc15..154c9d8a915d 100644 --- a/Misc/NEWS.d/next/Core and Builtins/2020-12-05-22-34-47.bpo-42576.lEeEl7.rst +++ b/Misc/NEWS.d/next/Core and Builtins/2020-12-05-22-34-47.bpo-42576.lEeEl7.rst @@ -1,3 +1,4 @@ ``types.GenericAlias`` will now raise a ``TypeError`` when attempting to initialize with a keyword argument. Previously, this would cause the -interpreter to crash. Patch by Ken Jin. +interpreter to crash if the interpreter was compiled with debug symbols. +This does not affect interpreters compiled for release. Patch by Ken Jin.