bpo-42576: Clarify only debug builds are affected in news (GH-23663)

This commit is contained in:
kj 2020-12-06 23:37:59 +07:00 committed by GitHub
parent c598a04dd2
commit 6a7fb9d31b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
``types.GenericAlias`` will now raise a ``TypeError`` when attempting to ``types.GenericAlias`` will now raise a ``TypeError`` when attempting to
initialize with a keyword argument. Previously, this would cause the 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.