File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,6 +217,8 @@ PyNode_CompileSymtable
217217PyNode_CompileFlags
218218PyNode_Compile
219219PyCode_New
220+ PyIter_Next
221+ PyObject_GetIter
220222PyObject_IsSubclass
221223PyObject_IsInstance
222224PyObject_CallMethod
@@ -232,6 +234,7 @@ PyMapping_Check
232234PySequence_Index
233235PySequence_In
234236PySequence_Contains
237+ _PySequence_IterContains
235238PySequence_Count
236239PySequence_Fast
237240PySequence_List
@@ -321,6 +324,7 @@ _Py_c_neg
321324_Py_c_diff
322325_Py_c_sum
323326PyDict_Type
327+ PyDictIter_Type
324328PyDict_DelItemString
325329PyDict_SetItemString
326330PyDict_GetItemString
@@ -348,6 +352,7 @@ PyFile_Name
348352PyFile_AsFile
349353PyFloat_Type
350354PyFloat_Fini
355+ PyFloat_AsReprString
351356PyFloat_AsString
352357PyFloat_AsStringEx
353358PyFloat_AsDouble
@@ -594,6 +599,7 @@ PyMac_GetOSType
594599PyMac_PromptGetFile
595600PyMac_GetDirectory
596601SIOUXDoAboutBox
602+ PyMac_RaiseConsoleWindow
597603PyMac_RestoreMenuBar
598604PyMac_InitMenuBar
599605PyMac_SetSchedParams
@@ -823,6 +829,7 @@ PyThread_get_thread_ident
823829PyThread_start_new_thread
824830PyThread_init_thread
825831PyExc_Exception
832+ PyExc_StopIteration
826833PyExc_StandardError
827834PyExc_ArithmeticError
828835PyExc_LookupError
@@ -888,6 +895,10 @@ PyCell_New
888895PySymtableEntry_Type
889896PySymtableEntry_New
890897PyNode_Future
898+ PySeqIter_Type
899+ PyCallIter_Type
900+ PyCallIter_New
901+ PySeqIter_New
891902GUSISetupConsoleStdio
892903GUSIStdioFlush
893904GUSIStdioClose
Original file line number Diff line number Diff line change @@ -217,6 +217,8 @@ PyNode_CompileSymtable
217217PyNode_CompileFlags
218218PyNode_Compile
219219PyCode_New
220+ PyIter_Next
221+ PyObject_GetIter
220222PyObject_IsSubclass
221223PyObject_IsInstance
222224PyObject_CallMethod
@@ -232,6 +234,7 @@ PyMapping_Check
232234PySequence_Index
233235PySequence_In
234236PySequence_Contains
237+ _PySequence_IterContains
235238PySequence_Count
236239PySequence_Fast
237240PySequence_List
@@ -321,6 +324,7 @@ _Py_c_neg
321324_Py_c_diff
322325_Py_c_sum
323326PyDict_Type
327+ PyDictIter_Type
324328PyDict_DelItemString
325329PyDict_SetItemString
326330PyDict_GetItemString
@@ -348,6 +352,7 @@ PyFile_Name
348352PyFile_AsFile
349353PyFloat_Type
350354PyFloat_Fini
355+ PyFloat_AsReprString
351356PyFloat_AsString
352357PyFloat_AsStringEx
353358PyFloat_AsDouble
@@ -592,6 +597,7 @@ PyMac_BuildNumVersion
592597PyMac_BuildOSType
593598PyMac_GetOSType
594599SIOUXDoAboutBox
600+ PyMac_RaiseConsoleWindow
595601PyMac_RestoreMenuBar
596602PyMac_InitMenuBar
597603PyMac_SetSchedParams
@@ -816,6 +822,7 @@ PyThread_get_thread_ident
816822PyThread_start_new_thread
817823PyThread_init_thread
818824PyExc_Exception
825+ PyExc_StopIteration
819826PyExc_StandardError
820827PyExc_ArithmeticError
821828PyExc_LookupError
@@ -881,6 +888,10 @@ PyCell_New
881888PySymtableEntry_Type
882889PySymtableEntry_New
883890PyNode_Future
891+ PySeqIter_Type
892+ PyCallIter_Type
893+ PyCallIter_New
894+ PySeqIter_New
884895GUSISetupConsoleStdio
885896GUSIStdioFlush
886897GUSIStdioClose
You can’t perform that action at this time.
0 commit comments