diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-05-31 21:17:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 21:17:24 (GMT) |
commit | f87c6d189418850ac9c2e5f9cb08531cf004f704 (patch) | |
tree | a22acb20bd56df12a11800f800af702f0d52c816 /PC | |
parent | e7cb216339e8aa8d00f7f55f9e37864b1720ca0f (diff) | |
download | cpython-f87c6d189418850ac9c2e5f9cb08531cf004f704.zip cpython-f87c6d189418850ac9c2e5f9cb08531cf004f704.tar.gz cpython-f87c6d189418850ac9c2e5f9cb08531cf004f704.tar.bz2 |
[3.12] gh-102304: Fix 2 New Stable ABI Functions (gh-104762) (gh-105123)
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/python3dll.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/python3dll.c b/PC/python3dll.c index 7e848ab..f2c0d9d 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -18,7 +18,9 @@ EXPORT_FUNC(_Py_BuildValue_SizeT) EXPORT_FUNC(_Py_CheckRecursiveCall) EXPORT_FUNC(_Py_Dealloc) EXPORT_FUNC(_Py_DecRef) +EXPORT_FUNC(_Py_DecRefTotal_DO_NOT_USE_THIS) EXPORT_FUNC(_Py_IncRef) +EXPORT_FUNC(_Py_IncRefTotal_DO_NOT_USE_THIS) EXPORT_FUNC(_Py_NegativeRefcount) EXPORT_FUNC(_Py_VaBuildValue_SizeT) EXPORT_FUNC(_PyArg_Parse_SizeT) |