From ebe20d9e7eb138c053958bc0a3058d34c6e1a679 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Wed, 17 Feb 2021 03:53:45 -0700 Subject: bpo-43155: Add PyCMethod_New to PC/python3.def (GH-24500) (GH-24554) (cherry picked from commit 8a8b5df93f379f561aab4f2fc5b2ad54f5009f7a) --- Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst | 1 + PC/python3.def | 1 + 2 files changed, 2 insertions(+) create mode 100644 Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst diff --git a/Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst b/Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst new file mode 100644 index 0000000..2eeef2b --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst @@ -0,0 +1 @@ +:c:func:`PyCMethod_New` is now present in ``python3.lib``. diff --git a/PC/python3.def b/PC/python3.def index fce0124..d27d7d0 100644 --- a/PC/python3.def +++ b/PC/python3.def @@ -40,6 +40,7 @@ EXPORTS PyCFunction_GetSelf=python39.PyCFunction_GetSelf PyCFunction_New=python39.PyCFunction_New PyCFunction_NewEx=python39.PyCFunction_NewEx + PyCMethod_New=python39.PyCMethod_New PyCFunction_Type=python39.PyCFunction_Type DATA PyCallIter_New=python39.PyCallIter_New PyCallIter_Type=python39.PyCallIter_Type DATA -- cgit v0.12