summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-10-10 21:45:17 (GMT)
committerGitHub <noreply@github.com>2019-10-10 21:45:17 (GMT)
commit320dd504ddf65efe946e6d1e89053ed2d7ebe1e9 (patch)
tree8fc7695bc3dc0c88801c99612cf597a160e167d9 /Misc
parent72bbd2a2e34a9e58d4bc9eae4c84c15a656215be (diff)
downloadcpython-320dd504ddf65efe946e6d1e89053ed2d7ebe1e9.zip
cpython-320dd504ddf65efe946e6d1e89053ed2d7ebe1e9.tar.gz
cpython-320dd504ddf65efe946e6d1e89053ed2d7ebe1e9.tar.bz2
bpo-38437: Activate GC_DEBUG when PY_DEBUG is set (GH-16707)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-10-10-20-42-09.bpo-38437.z_0mZp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-10-10-20-42-09.bpo-38437.z_0mZp.rst b/Misc/NEWS.d/next/Core and Builtins/2019-10-10-20-42-09.bpo-38437.z_0mZp.rst
new file mode 100644
index 0000000..69a8843
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-10-10-20-42-09.bpo-38437.z_0mZp.rst
@@ -0,0 +1,2 @@
+Activate the ``GC_DEBUG`` macro for debug builds of the interpreter (when
+``Py_DEBUG`` is set). Patch by Pablo Galindo.