diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-02 10:09:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 10:09:28 (GMT) |
commit | ff442f36b91810c8b8a6346e39f1dbf2c6d85764 (patch) | |
tree | ccc45e808d0e1b79a25925a32cd49dc64c04ed26 /Doc | |
parent | 50e847a9eb03f59e1d9268e46f3f98c2679caebd (diff) | |
download | cpython-ff442f36b91810c8b8a6346e39f1dbf2c6d85764.zip cpython-ff442f36b91810c8b8a6346e39f1dbf2c6d85764.tar.gz cpython-ff442f36b91810c8b8a6346e39f1dbf2c6d85764.tar.bz2 |
bpo-40241: What's New in Python 3.9: opaque PyGC_Head (GH-20586)
(cherry picked from commit 337d3103a2344e1fec75985e85fabcbdedac7d26)
Co-authored-by: Victor Stinner <vstinner@python.org>
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 abe0516..e9814a8 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 ------- |