Skip to content

Commit 1662868

Browse files
authored
Add symbols of the stable ABI to python3dll.c (GH-23598) (GH-23801)
Add the following symbols to python3dll.c: * PyFrame_GetCode (bpo-40421) * PyFrame_GetLineNumber (bpo-40421) * PyObject_CallNoArgs (bpo-37194) * PyThreadState_GetFrame (bpo-39947) * PyThreadState_GetID (bpo-39947) * PyThreadState_GetInterpreter (bpo-39947) (cherry picked from commit fcc6935)
1 parent bf0eed3 commit 1662868

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

PC/python3.def

+6
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ EXPORTS
266266
PyFloat_GetMax=python39.PyFloat_GetMax
267267
PyFloat_GetMin=python39.PyFloat_GetMin
268268
PyFloat_Type=python39.PyFloat_Type DATA
269+
PyFrame_GetCode=python39.PyFrame_GetCode
270+
PyFrame_GetLineNumber=python39.PyFrame_GetLineNumber
269271
PyFrozenSet_New=python39.PyFrozenSet_New
270272
PyFrozenSet_Type=python39.PyFrozenSet_Type DATA
271273
PyGC_Collect=python39.PyGC_Collect
@@ -453,6 +455,7 @@ EXPORTS
453455
PyObject_CallFunctionObjArgs=python39.PyObject_CallFunctionObjArgs
454456
PyObject_CallMethod=python39.PyObject_CallMethod
455457
PyObject_CallMethodObjArgs=python39.PyObject_CallMethodObjArgs
458+
PyObject_CallNoArgs=python39.PyObject_CallNoArgs
456459
PyObject_CallObject=python39.PyObject_CallObject
457460
PyObject_Calloc=python39.PyObject_Calloc
458461
PyObject_CheckReadBuffer=python39.PyObject_CheckReadBuffer
@@ -569,6 +572,9 @@ EXPORTS
569572
PyThreadState_DeleteCurrent=python39.PyThreadState_DeleteCurrent
570573
PyThreadState_Get=python39.PyThreadState_Get
571574
PyThreadState_GetDict=python39.PyThreadState_GetDict
575+
PyThreadState_GetFrame=python39.PyThreadState_GetFrame
576+
PyThreadState_GetID=python39.PyThreadState_GetID
577+
PyThreadState_GetInterpreter=python39.PyThreadState_GetInterpreter
572578
PyThreadState_New=python39.PyThreadState_New
573579
PyThreadState_SetAsyncExc=python39.PyThreadState_SetAsyncExc
574580
PyThreadState_Swap=python39.PyThreadState_Swap

0 commit comments

Comments
 (0)