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

Skip to content

Commit 38c4dd4

Browse files
committed
Regenerated, mainly for new GC routines.
1 parent b18ced2 commit 38c4dd4

2 files changed

Lines changed: 38 additions & 8 deletions

File tree

Mac/Build/PythonCore.exp

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ PyDict_Values
348348
PyDict_Keys
349349
PyDict_Size
350350
PyDict_Copy
351+
PyDict_Merge
351352
PyDict_Update
352353
PyDict_Next
353354
PyDict_Clear
@@ -432,6 +433,7 @@ PyCFunction_Type
432433
PyCFunction_Fini
433434
Py_FindMethod
434435
Py_FindMethodInChain
436+
PyCFunction_Call
435437
PyCFunction_GetFlags
436438
PyCFunction_GetSelf
437439
PyCFunction_GetFunction
@@ -460,6 +462,7 @@ PyObject_Malloc
460462
PyMem_Free
461463
PyMem_Realloc
462464
PyMem_Malloc
465+
_Py_ReadyTypes
463466
PyCallable_Check
464467
PyNumber_Coerce
465468
PyNumber_CoerceEx
@@ -483,7 +486,6 @@ PyObject_Compare
483486
PyObject_Unicode
484487
PyObject_Str
485488
PyObject_Repr
486-
_PyGC_Dump
487489
_PyObject_Dump
488490
PyObject_Print
489491
_PyObject_Del
@@ -518,6 +520,8 @@ PyString_Encode
518520
PyString_AsDecodedString
519521
PyString_AsDecodedObject
520522
PyString_Decode
523+
PyString_FromFormat
524+
PyString_FromFormatV
521525
PyString_FromString
522526
PyString_FromStringAndSize
523527
PyTuple_Type
@@ -531,8 +535,10 @@ PyTuple_New
531535
type_getsets
532536
PyType_Type
533537
PyBaseObject_Type
538+
PySuper_Type
534539
PyType_Ready
535540
_PyType_Lookup
541+
call_method
536542
PyType_IsSubtype
537543
PyType_GenericNew
538544
PyType_GenericAlloc
@@ -648,6 +654,7 @@ PyMac_StopGUSISpin
648654
RotateCursor
649655
SpinCursor
650656
PyMac_GetFullPath
657+
__convert_to_newlines
651658
PyMac_AppRefNum
652659
PyMac_options
653660
console_output_state
@@ -846,6 +853,7 @@ PyExc_Warning
846853
PyExc_UserWarning
847854
PyExc_DeprecationWarning
848855
PyExc_SyntaxWarning
856+
PyExc_OverflowWarning
849857
PyExc_RuntimeWarning
850858
_PyExc_Fini
851859
_PyExc_Init
@@ -869,6 +877,7 @@ PyOS_vsnprintf
869877
PyOS_snprintf
870878
proxytype
871879
wrappertype
880+
PyGetSet_Type
872881
PyWrapper_New
873882
PyDictProxy_New
874883
proxy_str
@@ -877,9 +886,16 @@ PyDescr_NewWrapper
877886
PyDescr_NewGetSet
878887
PyDescr_NewMember
879888
PyDescr_NewMethod
889+
_PyGC_generation0
890+
_PyObject_GC_Del
891+
_PyObject_GC_Resize
892+
_PyObject_GC_NewVar
893+
_PyObject_GC_New
894+
_PyObject_GC_Malloc
895+
_PyObject_GC_UnTrack
896+
_PyObject_GC_Track
897+
_PyGC_Dump
880898
initgc
881-
_PyGC_Remove
882-
_PyGC_Insert
883899
PyMac_OSErrException
884900
PyMacGluePtr_PyMac_GetFSSpec
885901
PyMacGluePtr_AEDesc_New
@@ -2074,7 +2090,6 @@ setvbuf
20742090
__flush_buffer
20752091
__load_buffer
20762092
__prep_buffer
2077-
__convert_to_newlines
20782093
__convert_from_newlines
20792094
ccommand
20802095
puts

Mac/Build/PythonCoreCarbon.exp

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ PyDict_Values
348348
PyDict_Keys
349349
PyDict_Size
350350
PyDict_Copy
351+
PyDict_Merge
351352
PyDict_Update
352353
PyDict_Next
353354
PyDict_Clear
@@ -432,6 +433,7 @@ PyCFunction_Type
432433
PyCFunction_Fini
433434
Py_FindMethod
434435
Py_FindMethodInChain
436+
PyCFunction_Call
435437
PyCFunction_GetFlags
436438
PyCFunction_GetSelf
437439
PyCFunction_GetFunction
@@ -460,6 +462,7 @@ PyObject_Malloc
460462
PyMem_Free
461463
PyMem_Realloc
462464
PyMem_Malloc
465+
_Py_ReadyTypes
463466
PyCallable_Check
464467
PyNumber_Coerce
465468
PyNumber_CoerceEx
@@ -483,7 +486,6 @@ PyObject_Compare
483486
PyObject_Unicode
484487
PyObject_Str
485488
PyObject_Repr
486-
_PyGC_Dump
487489
_PyObject_Dump
488490
PyObject_Print
489491
_PyObject_Del
@@ -518,6 +520,8 @@ PyString_Encode
518520
PyString_AsDecodedString
519521
PyString_AsDecodedObject
520522
PyString_Decode
523+
PyString_FromFormat
524+
PyString_FromFormatV
521525
PyString_FromString
522526
PyString_FromStringAndSize
523527
PyTuple_Type
@@ -531,8 +535,10 @@ PyTuple_New
531535
type_getsets
532536
PyType_Type
533537
PyBaseObject_Type
538+
PySuper_Type
534539
PyType_Ready
535540
_PyType_Lookup
541+
call_method
536542
PyType_IsSubtype
537543
PyType_GenericNew
538544
PyType_GenericAlloc
@@ -642,6 +648,7 @@ PyMac_StopGUSISpin
642648
RotateCursor
643649
SpinCursor
644650
PyMac_GetFullPath
651+
__convert_to_newlines
645652
PyMac_AppRefNum
646653
PyMac_options
647654
console_output_state
@@ -840,6 +847,7 @@ PyExc_Warning
840847
PyExc_UserWarning
841848
PyExc_DeprecationWarning
842849
PyExc_SyntaxWarning
850+
PyExc_OverflowWarning
843851
PyExc_RuntimeWarning
844852
_PyExc_Fini
845853
_PyExc_Init
@@ -863,6 +871,7 @@ PyOS_vsnprintf
863871
PyOS_snprintf
864872
proxytype
865873
wrappertype
874+
PyGetSet_Type
866875
PyWrapper_New
867876
PyDictProxy_New
868877
proxy_str
@@ -871,9 +880,16 @@ PyDescr_NewWrapper
871880
PyDescr_NewGetSet
872881
PyDescr_NewMember
873882
PyDescr_NewMethod
883+
_PyGC_generation0
884+
_PyObject_GC_Del
885+
_PyObject_GC_Resize
886+
_PyObject_GC_NewVar
887+
_PyObject_GC_New
888+
_PyObject_GC_Malloc
889+
_PyObject_GC_UnTrack
890+
_PyObject_GC_Track
891+
_PyGC_Dump
874892
initgc
875-
_PyGC_Remove
876-
_PyGC_Insert
877893
PyMac_OSErrException
878894
PyMacGluePtr_PyMac_GetFSSpec
879895
PyMacGluePtr_AEDesc_New
@@ -1952,7 +1968,6 @@ setvbuf
19521968
__flush_buffer
19531969
__load_buffer
19541970
__prep_buffer
1955-
__convert_to_newlines
19561971
__convert_from_newlines
19571972
ccommand
19581973
puts

0 commit comments

Comments
 (0)