summaryrefslogtreecommitdiffstats
path: root/Include/genobject.h
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 /Include/genobject.h
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 'Include/genobject.h')
-rw-r--r--Include/genobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index 6755963..3b3b68b 100644
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -43,7 +43,6 @@ PyAPI_DATA(PyTypeObject) PyGen_Type;
PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *);
PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *,
PyObject *name, PyObject *qualname);
-PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *);
PyAPI_FUNC(int) _PyGen_SetStopIterationValue(PyObject *);
PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **);
PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *);