diff --git a/Misc/NEWS.d/next/Windows/2020-11-19-22-54-27.bpo-42415._apLoA.rst b/Misc/NEWS.d/next/Windows/2020-11-19-22-54-27.bpo-42415._apLoA.rst new file mode 100644 index 00000000000000..db2b4707ad20c4 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2020-11-19-22-54-27.bpo-42415._apLoA.rst @@ -0,0 +1 @@ +The :c:func:`PyObject_CallNoArgs` symbol is now present in ``python3.lib``. diff --git a/PC/python3dll.c b/PC/python3dll.c index 27cc315de2dd19..45382c13ae48aa 100644 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -404,6 +404,7 @@ EXPORT_FUNC(PyObject_CallFunction) EXPORT_FUNC(PyObject_CallFunctionObjArgs) EXPORT_FUNC(PyObject_CallMethod) EXPORT_FUNC(PyObject_CallMethodObjArgs) +EXPORT_FUNC(PyObject_CallNoArgs) EXPORT_FUNC(PyObject_CallObject) EXPORT_FUNC(PyObject_Calloc) EXPORT_FUNC(PyObject_ClearWeakRefs)