Skip to content

Commit 833c626

Browse files
committed
Issue #28544: Fix compilation of _asynciomodule.c on Windows
1 parent d14ae16 commit 833c626

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Include/dictobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ PyAPI_FUNC(void) _PyDict_MaybeUntrack(PyObject *mp);
112112
PyAPI_FUNC(int) _PyDict_HasOnlyStringKeys(PyObject *mp);
113113
Py_ssize_t _PyDict_KeysSize(PyDictKeysObject *keys);
114114
Py_ssize_t _PyDict_SizeOf(PyDictObject *);
115-
PyObject *_PyDict_Pop(PyDictObject *, PyObject *, PyObject *);
115+
PyAPI_FUNC(PyObject *) _PyDict_Pop(PyDictObject *, PyObject *, PyObject *);
116116
PyObject *_PyDict_FromKeys(PyObject *, PyObject *, PyObject *);
117117
#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)
118118

Include/genobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *,
4242
PyObject *name, PyObject *qualname);
4343
PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *);
4444
PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **);
45-
PyObject *_PyGen_Send(PyGenObject *, PyObject *);
45+
PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *);
4646
PyObject *_PyGen_yf(PyGenObject *);
4747
PyAPI_FUNC(void) _PyGen_Finalize(PyObject *self);
4848

0 commit comments

Comments
 (0)