Skip to content

Commit 06b3909

Browse files
chore: Update pythonXY.def (#76)
Co-authored-by: messense <[email protected]>
1 parent c48bdbe commit 06b3909

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

src/python313.def

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ PyContext_New
141141
PyContext_Type DATA
142142
PyCoro_New
143143
PyCoro_Type DATA
144+
PyCriticalSection2_Begin
145+
PyCriticalSection2_End
146+
PyCriticalSection_Begin
147+
PyCriticalSection_End
144148
PyDescr_IsData
145149
PyDescr_NewClassMethod
146150
PyDescr_NewGetSet
@@ -305,7 +309,6 @@ PyExc_GeneratorExit DATA
305309
PyExc_IOError DATA
306310
PyExc_ImportError DATA
307311
PyExc_ImportWarning DATA
308-
PyExc_IncompleteInputError DATA
309312
PyExc_IndentationError DATA
310313
PyExc_IndexError DATA
311314
PyExc_InterpreterError DATA
@@ -590,6 +593,8 @@ PyModule_SetDocString
590593
PyModule_Type DATA
591594
PyMonitoring_EnterScope
592595
PyMonitoring_ExitScope
596+
PyMutex_Lock
597+
PyMutex_Unlock
593598
PyNumber_Absolute
594599
PyNumber_Add
595600
PyNumber_And
@@ -798,6 +803,7 @@ PySet_New
798803
PySet_Pop
799804
PySet_Size
800805
PySet_Type DATA
806+
PySignal_SetWakeupFd
801807
PySlice_AdjustIndices
802808
PySlice_GetIndices
803809
PySlice_GetIndicesEx
@@ -1071,6 +1077,7 @@ PyUnstable_InterpreterFrame_GetLine
10711077
PyUnstable_InterpreterState_GetMainModule
10721078
PyUnstable_Long_CompactValue
10731079
PyUnstable_Long_IsCompact
1080+
PyUnstable_Object_ClearWeakRefsNoCallbacks
10741081
PyUnstable_Object_GC_NewWithExtraData
10751082
PyUnstable_PerfMapState_Fini
10761083
PyUnstable_PerfMapState_Init
@@ -1212,6 +1219,7 @@ _PyBytesWriter_Resize
12121219
_PyBytesWriter_WriteBytes
12131220
_PyBytes_DecodeEscape
12141221
_PyBytes_Find
1222+
_PyBytes_Join
12151223
_PyBytes_Repeat
12161224
_PyBytes_Resize
12171225
_PyBytes_ReverseFind
@@ -1254,15 +1262,18 @@ _PyCrossInterpreterData_ReleaseAndRawFree
12541262
_PyCrossInterpreterData_UnregisterClass
12551263
_PyDeadline_Get
12561264
_PyDeadline_Init
1265+
_PyDict_DelItemIf
12571266
_PyDict_DelItem_KnownHash
12581267
_PyDict_FromItems
1268+
_PyDict_GetItemRef_KnownHash_LockHeld
12591269
_PyDict_GetItemStringWithError
12601270
_PyDict_GetItem_KnownHash
12611271
_PyDict_LoadGlobal
12621272
_PyDict_MergeEx
12631273
_PyDict_NewPresized
12641274
_PyDict_Pop
12651275
_PyDict_SetItem_KnownHash
1276+
_PyDict_SetItem_KnownHash_LockHeld
12661277
_PyDict_SetItem_Take2
12671278
_PyDict_SizeOf
12681279
_PyErr_BadInternalCall
@@ -1292,12 +1303,14 @@ _PyEval_GetBuiltin
12921303
_PyEval_MakePendingCalls
12931304
_PyEval_MatchClass
12941305
_PyEval_MatchKeys
1306+
_PyEval_MonitorRaise
12951307
_PyEval_SetProfile
12961308
_PyEval_SliceIndex
12971309
_PyEval_SliceIndexNotNone
12981310
_PyEval_UnpackIterable
12991311
_PyEvent_IsSet
13001312
_PyEvent_Notify
1313+
_PyExc_IncompleteInputError DATA
13011314
_PyFloat_ExactDealloc
13021315
_PyFrame_IsEntryFrame
13031316
_PyFunction_SetVersion
@@ -1384,8 +1397,6 @@ _PyMonitoring_FirePyYieldEvent
13841397
_PyMonitoring_FireRaiseEvent
13851398
_PyMonitoring_FireReraiseEvent
13861399
_PyMonitoring_FireStopIterationEvent
1387-
_PyMutex_LockSlow
1388-
_PyMutex_UnlockSlow
13891400
_PyNamespace_New
13901401
_PyNone_Type DATA
13911402
_PyNotImplemented_Type DATA
@@ -1431,6 +1442,9 @@ _PyRWMutex_Lock
14311442
_PyRWMutex_RLock
14321443
_PyRWMutex_RUnlock
14331444
_PyRWMutex_Unlock
1445+
_PyRecursiveMutex_IsLockedByCurrentThread
1446+
_PyRecursiveMutex_Lock
1447+
_PyRecursiveMutex_Unlock
14341448
_PyRuntime DATA
14351449
_PySemaphore_Destroy
14361450
_PySemaphore_Init
@@ -1451,7 +1465,6 @@ _PySlice_FromIndices
14511465
_PySlice_GetLongIndices
14521466
_PyStack_AsDict
14531467
_PyState_AddModule
1454-
_PyStaticType_FiniForExtension
14551468
_PyStaticType_InitForExtension
14561469
_PyStructSequence_NewType
14571470
_PySuper_Lookup
@@ -1460,6 +1473,8 @@ _PySys_GetSizeOf
14601473
_PyThreadState_GetCurrent
14611474
_PyThreadState_GetDict
14621475
_PyThreadState_Init
1476+
_PyThreadState_New
1477+
_PyThreadState_NewBound
14631478
_PyThreadState_PopFrame
14641479
_PyThreadState_Prealloc
14651480
_PyThread_CurrentFrames
@@ -1514,6 +1529,9 @@ _PyUnicode_Equal
15141529
_PyUnicode_EqualToASCIIString
15151530
_PyUnicode_ExactDealloc
15161531
_PyUnicode_FromId
1532+
_PyUnicode_InternImmortal
1533+
_PyUnicode_InternInPlace
1534+
_PyUnicode_InternMortal
15171535
_PyUnicode_IsAlpha
15181536
_PyUnicode_IsDecimalDigit
15191537
_PyUnicode_IsDigit

0 commit comments

Comments
 (0)