summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-04-23 11:56:08 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-04-23 11:56:08 (GMT)
commit359bd4f61b9e1493081f4f67882554247b53926a (patch)
tree855a49b616a74c02af6ed72cbb64e675371d2e1e /Misc
parent09415ff0ebbbe97c8cd08ac1f94673d7a49c8018 (diff)
downloadcpython-359bd4f61b9e1493081f4f67882554247b53926a.zip
cpython-359bd4f61b9e1493081f4f67882554247b53926a.tar.gz
cpython-359bd4f61b9e1493081f4f67882554247b53926a.tar.bz2
bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-12-08-03-40-43.bpo-18372.DT1nR0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-12-08-03-40-43.bpo-18372.DT1nR0.rst b/Misc/NEWS.d/next/Core and Builtins/2018-12-08-03-40-43.bpo-18372.DT1nR0.rst
new file mode 100644
index 0000000..d8205b8
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-12-08-03-40-43.bpo-18372.DT1nR0.rst
@@ -0,0 +1,2 @@
+Add missing :c:func:`PyObject_GC_Track` calls in the :mod:`pickle` module.
+Patch by Zackery Spytz.