summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-07-04 17:55:43 (GMT)
committerGitHub <noreply@github.com>2021-07-04 17:55:43 (GMT)
commit4684a34c8d2a2ffac7b779edb4ba57f043783478 (patch)
tree5d51f22fd803d99b225fb65001b226724fbfe5bc /Misc
parent21be6cb0304ba143980b7e4c875cb5b9db30952b (diff)
downloadcpython-4684a34c8d2a2ffac7b779edb4ba57f043783478.zip
cpython-4684a34c8d2a2ffac7b779edb4ba57f043783478.tar.gz
cpython-4684a34c8d2a2ffac7b779edb4ba57f043783478.tar.bz2
bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAlias … (GH-27016) (GH-27018)
(cherry picked from commit d33943a6c368c2184e238019c63ac7a267da5594) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-07-04-23-38-51.bpo-44562.QdeRQo.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-07-04-23-38-51.bpo-44562.QdeRQo.rst b/Misc/NEWS.d/next/Core and Builtins/2021-07-04-23-38-51.bpo-44562.QdeRQo.rst
new file mode 100644
index 0000000..2fc65bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-07-04-23-38-51.bpo-44562.QdeRQo.rst
@@ -0,0 +1,2 @@
+Remove uses of :c:func:`PyObject_GC_Del` in error path when initializing
+:class:`types.GenericAlias`.