commit | 8a8b5df93f379f561aab4f2fc5b2ad54f5009f7a | [log] [tgz] |
---|---|---|
author | Zackery Spytz <zspytz@gmail.com> | Mon Feb 15 17:14:13 2021 -0700 |
committer | GitHub <noreply@github.com> | Tue Feb 16 01:14:13 2021 +0100 |
tree | d28e0a4554bde7898da4294f7fb031b9e43e4544 | |
parent | 755f3c1521b422bc2177013d289f5439975fdc4f [diff] [blame] |
bpo-43155: Add PyCMethod_New to PC/python3dll.c (GH-24500)
diff --git a/PC/python3dll.c b/PC/python3dll.c index 542853a..3f87b70 100644 --- a/PC/python3dll.c +++ b/PC/python3dll.c
@@ -128,6 +128,7 @@ EXPORT_FUNC(PyCFunction_GetFunction) EXPORT_FUNC(PyCFunction_GetSelf) EXPORT_FUNC(PyCFunction_New) EXPORT_FUNC(PyCFunction_NewEx) +EXPORT_FUNC(PyCMethod_New) EXPORT_FUNC(PyCodec_BackslashReplaceErrors) EXPORT_FUNC(PyCodec_Decode) EXPORT_FUNC(PyCodec_Decoder)