summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorJoannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>2019-09-06 15:41:38 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-09-06 15:41:38 (GMT)
commit74b662cf202753d224d82d5503974cce881f7436 (patch)
tree7bf56ecdbf04328895afebce38f01f4b11403461 /Doc/whatsnew
parentd8c93aa5d29d3cab537357018d5806a57452a8fe (diff)
downloadcpython-74b662cf202753d224d82d5503974cce881f7436.zip
cpython-74b662cf202753d224d82d5503974cce881f7436.tar.gz
cpython-74b662cf202753d224d82d5503974cce881f7436.tar.bz2
bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702)
Remove PyGen_NeedsFinalizing(): it was not documented, tested or used anywhere within CPython after the implementation of PEP 442.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 756690d..5670cb5 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -222,6 +222,11 @@ Removed
* ``PyThreadState_DeleteCurrent()`` has been removed. It was not documented.
(Contributed by Joannah Nanjekye in :issue:`37878`.)
+* The C function ``PyGen_NeedsFinalizing`` has been removed. It was not
+ documented, tested or used anywhere within CPython after the implementation
+ of :pep:`442`. Patch by Joannah Nanjekye.
+ (Contributed by Joannah Nanjekye in :issue:`15088`)
+
Porting to Python 3.9
=====================