diff options
author | kj <28750310+Fidget-Spinner@users.noreply.github.com> | 2020-12-06 16:37:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 16:37:59 (GMT) |
commit | 6a7fb9d31bce8590e30c44458d1fc1da4539743d (patch) | |
tree | f818189cf6f4d6969eb4e7152db5455b16c24f12 /Misc | |
parent | c598a04dd29b89ad072245ddaf738badcfb41ac7 (diff) | |
download | cpython-6a7fb9d31bce8590e30c44458d1fc1da4539743d.zip cpython-6a7fb9d31bce8590e30c44458d1fc1da4539743d.tar.gz cpython-6a7fb9d31bce8590e30c44458d1fc1da4539743d.tar.bz2 |
bpo-42576: Clarify only debug builds are affected in news (GH-23663)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-12-05-22-34-47.bpo-42576.lEeEl7.rst | 3 |
1 files changed, 2 insertions, 1 deletions
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 7290b47..154c9d8 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. |