diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-02 10:02:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 10:02:58 (GMT) |
commit | 337d3103a2344e1fec75985e85fabcbdedac7d26 (patch) | |
tree | efdc169db28b2f7aece79585c07fa90eda897424 /Doc | |
parent | 033d10bd21d962a59c6c4fc503092046baa451a1 (diff) | |
download | cpython-337d3103a2344e1fec75985e85fabcbdedac7d26.zip cpython-337d3103a2344e1fec75985e85fabcbdedac7d26.tar.gz cpython-337d3103a2344e1fec75985e85fabcbdedac7d26.tar.bz2 |
bpo-40241: What's New in Python 3.9: opaque PyGC_Head (GH-20586)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index ccc84cc..b20cd14 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 ------- |