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/dictobject.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/dictobject.h')
-rw-r--r-- | Include/dictobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h index f06f240..5cf6db1 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -112,7 +112,7 @@ PyAPI_FUNC(void) _PyDict_MaybeUntrack(PyObject *mp); PyAPI_FUNC(int) _PyDict_HasOnlyStringKeys(PyObject *mp); Py_ssize_t _PyDict_KeysSize(PyDictKeysObject *keys); Py_ssize_t _PyDict_SizeOf(PyDictObject *); -PyObject *_PyDict_Pop(PyDictObject *, PyObject *, PyObject *); +PyAPI_FUNC(PyObject *) _PyDict_Pop(PyDictObject *, PyObject *, PyObject *); PyObject *_PyDict_FromKeys(PyObject *, PyObject *, PyObject *); #define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL) |