Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1bd0a71

Browse files
committed
Added iterobject.c to the project. And trying my first checkin at the same time.
1 parent 16cabc0 commit 1bd0a71

5 files changed

Lines changed: 22 additions & 0 deletions

File tree

Mac/Build/PythonCore.exp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,8 @@ PyNode_CompileSymtable
217217
PyNode_CompileFlags
218218
PyNode_Compile
219219
PyCode_New
220+
PyIter_Next
221+
PyObject_GetIter
220222
PyObject_IsSubclass
221223
PyObject_IsInstance
222224
PyObject_CallMethod
@@ -232,6 +234,7 @@ PyMapping_Check
232234
PySequence_Index
233235
PySequence_In
234236
PySequence_Contains
237+
_PySequence_IterContains
235238
PySequence_Count
236239
PySequence_Fast
237240
PySequence_List
@@ -321,6 +324,7 @@ _Py_c_neg
321324
_Py_c_diff
322325
_Py_c_sum
323326
PyDict_Type
327+
PyDictIter_Type
324328
PyDict_DelItemString
325329
PyDict_SetItemString
326330
PyDict_GetItemString
@@ -348,6 +352,7 @@ PyFile_Name
348352
PyFile_AsFile
349353
PyFloat_Type
350354
PyFloat_Fini
355+
PyFloat_AsReprString
351356
PyFloat_AsString
352357
PyFloat_AsStringEx
353358
PyFloat_AsDouble
@@ -594,6 +599,7 @@ PyMac_GetOSType
594599
PyMac_PromptGetFile
595600
PyMac_GetDirectory
596601
SIOUXDoAboutBox
602+
PyMac_RaiseConsoleWindow
597603
PyMac_RestoreMenuBar
598604
PyMac_InitMenuBar
599605
PyMac_SetSchedParams
@@ -823,6 +829,7 @@ PyThread_get_thread_ident
823829
PyThread_start_new_thread
824830
PyThread_init_thread
825831
PyExc_Exception
832+
PyExc_StopIteration
826833
PyExc_StandardError
827834
PyExc_ArithmeticError
828835
PyExc_LookupError
@@ -888,6 +895,10 @@ PyCell_New
888895
PySymtableEntry_Type
889896
PySymtableEntry_New
890897
PyNode_Future
898+
PySeqIter_Type
899+
PyCallIter_Type
900+
PyCallIter_New
901+
PySeqIter_New
891902
GUSISetupConsoleStdio
892903
GUSIStdioFlush
893904
GUSIStdioClose

Mac/Build/PythonCore.mcp

0 Bytes
Binary file not shown.

Mac/Build/PythonCoreCarbon.exp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,8 @@ PyNode_CompileSymtable
217217
PyNode_CompileFlags
218218
PyNode_Compile
219219
PyCode_New
220+
PyIter_Next
221+
PyObject_GetIter
220222
PyObject_IsSubclass
221223
PyObject_IsInstance
222224
PyObject_CallMethod
@@ -232,6 +234,7 @@ PyMapping_Check
232234
PySequence_Index
233235
PySequence_In
234236
PySequence_Contains
237+
_PySequence_IterContains
235238
PySequence_Count
236239
PySequence_Fast
237240
PySequence_List
@@ -321,6 +324,7 @@ _Py_c_neg
321324
_Py_c_diff
322325
_Py_c_sum
323326
PyDict_Type
327+
PyDictIter_Type
324328
PyDict_DelItemString
325329
PyDict_SetItemString
326330
PyDict_GetItemString
@@ -348,6 +352,7 @@ PyFile_Name
348352
PyFile_AsFile
349353
PyFloat_Type
350354
PyFloat_Fini
355+
PyFloat_AsReprString
351356
PyFloat_AsString
352357
PyFloat_AsStringEx
353358
PyFloat_AsDouble
@@ -592,6 +597,7 @@ PyMac_BuildNumVersion
592597
PyMac_BuildOSType
593598
PyMac_GetOSType
594599
SIOUXDoAboutBox
600+
PyMac_RaiseConsoleWindow
595601
PyMac_RestoreMenuBar
596602
PyMac_InitMenuBar
597603
PyMac_SetSchedParams
@@ -816,6 +822,7 @@ PyThread_get_thread_ident
816822
PyThread_start_new_thread
817823
PyThread_init_thread
818824
PyExc_Exception
825+
PyExc_StopIteration
819826
PyExc_StandardError
820827
PyExc_ArithmeticError
821828
PyExc_LookupError
@@ -881,6 +888,10 @@ PyCell_New
881888
PySymtableEntry_Type
882889
PySymtableEntry_New
883890
PyNode_Future
891+
PySeqIter_Type
892+
PyCallIter_Type
893+
PyCallIter_New
894+
PySeqIter_New
884895
GUSISetupConsoleStdio
885896
GUSIStdioFlush
886897
GUSIStdioClose

Mac/Build/PythonStandSmall.mcp

0 Bytes
Binary file not shown.

Mac/Build/PythonStandalone.mcp

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)