From c4d6c8fc3c6e3b0e67de5e72194e49f7ff5b7618 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Thu, 19 Nov 2020 22:55:08 -0700 Subject: [PATCH] bpo-42415: Add PyObject_CallNoArgs to PC\python3dll.c --- .../NEWS.d/next/Windows/2020-11-19-22-54-27.bpo-42415._apLoA.rst | 1 + PC/python3dll.c | 1 + 2 files changed, 2 insertions(+) create mode 100644 Misc/NEWS.d/next/Windows/2020-11-19-22-54-27.bpo-42415._apLoA.rst 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)