diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-04-28 14:30:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 14:30:28 (GMT) |
commit | 6dcbc08c95cce4630b3bfb53bdb74e2523795555 (patch) | |
tree | ad1c12daa5201e81b6c68df6d46f26d8cf75688c /PC | |
parent | d1de10784d9678d14759d0d03216431d1090e60e (diff) | |
download | cpython-6dcbc08c95cce4630b3bfb53bdb74e2523795555.zip cpython-6dcbc08c95cce4630b3bfb53bdb74e2523795555.tar.gz cpython-6dcbc08c95cce4630b3bfb53bdb74e2523795555.tar.bz2 |
gh-91324: List feature macros in the stable ABI manifest, improve tests (GH-32415)
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 aabc1e8..50e7a96 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -19,6 +19,7 @@ EXPORT_FUNC(_Py_CheckRecursiveCall) EXPORT_FUNC(_Py_Dealloc) EXPORT_FUNC(_Py_DecRef) EXPORT_FUNC(_Py_IncRef) +EXPORT_FUNC(_Py_NegativeRefcount) EXPORT_FUNC(_Py_VaBuildValue_SizeT) EXPORT_FUNC(_PyArg_Parse_SizeT) EXPORT_FUNC(_PyArg_ParseTuple_SizeT) @@ -730,6 +731,7 @@ EXPORT_DATA(_Py_EllipsisObject) EXPORT_DATA(_Py_FalseStruct) EXPORT_DATA(_Py_NoneStruct) EXPORT_DATA(_Py_NotImplementedStruct) +EXPORT_DATA(_Py_RefTotal) EXPORT_DATA(_Py_SwappedOp) EXPORT_DATA(_Py_TrueStruct) EXPORT_DATA(_PyWeakref_CallableProxyType) |