From 8cb1c292db4717569781b8fea1193703a8d03cf0 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 2 Jun 2020 03:25:49 +0200 Subject: [PATCH 1/2] bpo-40241: What's New in Python 3.9: opaque PyGC_Head --- Doc/whatsnew/3.9.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index ccc84cced1090b2..e1b32dab8940c6a 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -1098,6 +1098,10 @@ Porting to Python 3.9 and refers to a constant string. (Contributed by Serhiy Storchaka in :issue:`38650`.) +* The :c:type`PyGC_Head` structure is now opaque. It is only defined in the + internal C API (``pycore_gc.h``). + (Contributed by Victor Stinner in :issue:`40241`.) + Removed ------- From ddf1c7d731b3f0a4f3b9d3f2dbc7e1f0bbf4ce0d Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 2 Jun 2020 04:12:08 +0200 Subject: [PATCH 2/2] Fix typo --- Doc/whatsnew/3.9.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index e1b32dab8940c6a..b20cd14565ae12b 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -1098,7 +1098,7 @@ Porting to Python 3.9 and refers to a constant string. (Contributed by Serhiy Storchaka in :issue:`38650`.) -* The :c:type`PyGC_Head` structure is now opaque. It is only defined in the +* The :c:type:`PyGC_Head` structure is now opaque. It is only defined in the internal C API (``pycore_gc.h``). (Contributed by Victor Stinner in :issue:`40241`.)