diff options
author | Yury Selivanov <yury@magic.io> | 2016-10-28 22:48:50 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-10-28 22:48:50 (GMT) |
commit | 833c626e6739f7610593e7831166af6d2e064d74 (patch) | |
tree | 4b86c6d619ef0c54b4c66a987385e6692a8c99df /Include/genobject.h | |
parent | d14ae161dee43472d1cd3db82dbb0c6368577d62 (diff) | |
download | cpython-833c626e6739f7610593e7831166af6d2e064d74.zip cpython-833c626e6739f7610593e7831166af6d2e064d74.tar.gz cpython-833c626e6739f7610593e7831166af6d2e064d74.tar.bz2 |
Issue #28544: Fix compilation of _asynciomodule.c on Windows
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 973bdd5..1ee4fd5 100644 --- a/Include/genobject.h +++ b/Include/genobject.h @@ -42,7 +42,7 @@ PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *, PyObject *name, PyObject *qualname); PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *); PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **); -PyObject *_PyGen_Send(PyGenObject *, PyObject *); +PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *); PyObject *_PyGen_yf(PyGenObject *); PyAPI_FUNC(void) _PyGen_Finalize(PyObject *self); |