summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2021-08-11 15:35:38 (GMT)
committerGitHub <noreply@github.com>2021-08-11 15:35:38 (GMT)
commit09d814b3833c2c852f4f233297b4561028782d2a (patch)
tree28655bd894cdb7b170fd128e1b1978d5c46c2fab /Misc
parent7f88aeadc19b1d3ece4723efb240e6d6753570b9 (diff)
downloadcpython-09d814b3833c2c852f4f233297b4561028782d2a.zip
cpython-09d814b3833c2c852f4f233297b4561028782d2a.tar.gz
cpython-09d814b3833c2c852f4f233297b4561028782d2a.tar.bz2
[3.8] bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-27678) (GH-27721)
(cherry picked from commit bfc2d5a5c4550ab3a2fadeb9459b4bd948ff61a2) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-08-09-14-29-52.bpo-33930.--5LQ-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-09-14-29-52.bpo-33930.--5LQ-.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-09-14-29-52.bpo-33930.--5LQ-.rst
new file mode 100644
index 0000000..827dd3f
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-09-14-29-52.bpo-33930.--5LQ-.rst
@@ -0,0 +1,2 @@
+Fix segmentation fault with deep recursion when cleaning method objects.
+Patch by Augusto Goulart and Pablo Galindo.