diff options
author | 2012-06-17 15:15:49 +1000 | |
---|---|---|
committer | 2012-06-17 15:15:49 +1000 | |
commit | c40bc09942f9532ed957dc8cd4da269ec089e830 (patch) | |
tree | f2596be6a738f230f6be4776f7f42d6925a3d747 /Include/genobject.h | |
parent | Issue #15054: Fix incorrect tokenization of 'b' string literals. (diff) | |
download | cpython-c40bc09942f9532ed957dc8cd4da269ec089e830.tar.gz cpython-c40bc09942f9532ed957dc8cd4da269ec089e830.tar.bz2 cpython-c40bc09942f9532ed957dc8cd4da269ec089e830.zip |
Issue #13783: the PEP 380 implementation no longer expands the public C API
Diffstat (limited to 'Include/genobject.h')
-rw-r--r-- | Include/genobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/genobject.h b/Include/genobject.h index 25f6c33d1cc..ed451baf3cb 100644 --- a/Include/genobject.h +++ b/Include/genobject.h @@ -34,7 +34,7 @@ PyAPI_DATA(PyTypeObject) PyGen_Type; PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *); PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *); -PyAPI_FUNC(int) PyGen_FetchStopIterationValue(PyObject **); +PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **); PyObject *_PyGen_Send(PyGenObject *, PyObject *); #ifdef __cplusplus |