[Python-checkins] bpo-43155: Add PyCMethod_New to PC/python3.def (GH-24500) (GH-24554)

vstinner webhook-mailer at python.org
Wed Feb 17 05:53:48 EST 2021


https://github.com/python/cpython/commit/ebe20d9e7eb138c053958bc0a3058d34c6e1a679
commit: ebe20d9e7eb138c053958bc0a3058d34c6e1a679
branch: 3.9
author: Zackery Spytz <zspytz at gmail.com>
committer: vstinner <vstinner at python.org>
date: 2021-02-17T11:53:45+01:00
summary:

bpo-43155: Add PyCMethod_New to PC/python3.def (GH-24500) (GH-24554)

(cherry picked from commit 8a8b5df93f379f561aab4f2fc5b2ad54f5009f7a)

files:
A Misc/NEWS.d/next/Windows/2021-02-10-04-16-51.bpo-43155.O1tURk.rst
M PC/python3.def

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 0000000000000..2eeef2b0ea27a
--- /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 fce01249758e2..d27d7d07128a4 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



More information about the Python-checkins mailing list