summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-09-26 21:24:16 (GMT)
committerlarryhastings <larry@hastings.org>2017-09-26 21:24:16 (GMT)
commit0fcc03367b31f44c1e1b8d3d2dd940ef1e744326 (patch)
treee889a3b7de22ace9191e6b9ffd45093e897a3384 /Misc/NEWS.d/next
parent44c1b62939a6192776dc9d093546154044cb2ecb (diff)
downloadcpython-0fcc03367b31f44c1e1b8d3d2dd940ef1e744326.zip
cpython-0fcc03367b31f44c1e1b8d3d2dd940ef1e744326.tar.gz
cpython-0fcc03367b31f44c1e1b8d3d2dd940ef1e744326.tar.bz2
bpo-31095: fix potential crash during GC (GH-2974) (#3196)
(cherry picked from commit a6296d34a478b4f697ea9db798146195075d496c)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-08-01-18-48-30.bpo-31095.bXWZDb.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-08-01-18-48-30.bpo-31095.bXWZDb.rst b/Misc/NEWS.d/next/Core and Builtins/2017-08-01-18-48-30.bpo-31095.bXWZDb.rst
new file mode 100644
index 0000000..ca1f8ba
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-08-01-18-48-30.bpo-31095.bXWZDb.rst
@@ -0,0 +1,2 @@
+Fix potential crash during GC caused by ``tp_dealloc`` which doesn't call
+``PyObject_GC_UnTrack()``.