File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -208,7 +208,9 @@ PyThreadState_New
208208PyInterpreterState_Delete
209209PyInterpreterState_Clear
210210PyInterpreterState_New
211+ PyMember_SetOne
211212PyMember_Set
213+ PyMember_GetOne
212214PyMember_Get
213215PySys_WriteStderr
214216PySys_WriteStdout
@@ -249,8 +251,8 @@ PyMapping_Check
249251PySequence_Index
250252PySequence_In
251253PySequence_Contains
252- _PySequence_IterContains
253254PySequence_Count
255+ _PySequence_IterSearch
254256PySequence_Fast
255257PySequence_List
256258PySequence_Tuple
@@ -433,6 +435,7 @@ PyLong_AsLong
433435PyLong_FromDouble
434436PyLong_FromUnsignedLong
435437PyLong_FromLong
438+ _PyLong_Copy
436439_PyLong_New
437440PyCFunction_Type
438441PyCFunction_Fini
@@ -454,7 +457,6 @@ _Py_NoneStruct
454457_Py_NotImplementedStruct
455458_Py_cobject_hack
456459_Py_abstract_hack
457- PyObject_ClearWeakRefs
458460Py_DivisionWarningFlag
459461_PyTrash_delete_later
460462_PyTrash_delete_nesting
@@ -544,8 +546,10 @@ subtype_getsets
544546PyType_Type
545547PyBaseObject_Type
546548PySuper_Type
549+ _PyObject_SlotCompare
547550PyType_Ready
548551_PyType_Lookup
552+ call_maybe
549553call_method
550554PyType_IsSubtype
551555PyType_GenericNew
@@ -661,7 +665,7 @@ PLstrcpy
661665PyMac_StopGUSISpin
662666RotateCursor
663667SpinCursor
664- PyMac_GetFullPath
668+ PyMac_GetFullPathname
665669PyMac_AppRefNum
666670PyMac_options
667671console_output_state
@@ -796,6 +800,8 @@ PyUnicodeUCS2_DecodeUTF16
796800PyUnicodeUCS2_AsUTF8String
797801PyUnicodeUCS2_EncodeUTF8
798802PyUnicodeUCS2_DecodeUTF8
803+ PyUnicode_EncodeUTF7
804+ PyUnicode_DecodeUTF7
799805PyUnicodeUCS2_SetDefaultEncoding
800806PyUnicodeUCS2_GetDefaultEncoding
801807PyUnicodeUCS2_GetSize
@@ -849,6 +855,7 @@ PyExc_NotImplementedError
849855PyExc_SyntaxError
850856PyExc_IndentationError
851857PyExc_TabError
858+ PyExc_ReferenceError
852859PyExc_SystemError
853860PyExc_SystemExit
854861PyExc_UnboundLocalError
@@ -883,6 +890,7 @@ PyCallIter_New
883890PySeqIter_New
884891PyOS_vsnprintf
885892PyOS_snprintf
893+ PyWrapperDescr_Type
886894proxytype
887895wrappertype
888896PyProperty_Type
@@ -1026,6 +1034,14 @@ PyErr_Mac
10261034PyMac_GetOSErrException
10271035PyMac_StrError
10281036PyMac_getscript
1037+ _PyWeakref_RefType
1038+ _PyWeakref_ProxyType
1039+ _PyWeakref_CallableProxyType
1040+ PyObject_ClearWeakRefs
1041+ PyWeakref_GetObject
1042+ PyWeakref_NewProxy
1043+ PyWeakref_NewRef
1044+ _PyWeakref_GetWeakrefCount
10291045GUSISetupConsoleStdio
10301046GUSIStdioFlush
10311047GUSIStdioClose
Original file line number Diff line number Diff line change @@ -208,7 +208,9 @@ PyThreadState_New
208208PyInterpreterState_Delete
209209PyInterpreterState_Clear
210210PyInterpreterState_New
211+ PyMember_SetOne
211212PyMember_Set
213+ PyMember_GetOne
212214PyMember_Get
213215PySys_WriteStderr
214216PySys_WriteStdout
@@ -249,8 +251,8 @@ PyMapping_Check
249251PySequence_Index
250252PySequence_In
251253PySequence_Contains
252- _PySequence_IterContains
253254PySequence_Count
255+ _PySequence_IterSearch
254256PySequence_Fast
255257PySequence_List
256258PySequence_Tuple
@@ -433,6 +435,7 @@ PyLong_AsLong
433435PyLong_FromDouble
434436PyLong_FromUnsignedLong
435437PyLong_FromLong
438+ _PyLong_Copy
436439_PyLong_New
437440PyCFunction_Type
438441PyCFunction_Fini
@@ -454,7 +457,6 @@ _Py_NoneStruct
454457_Py_NotImplementedStruct
455458_Py_cobject_hack
456459_Py_abstract_hack
457- PyObject_ClearWeakRefs
458460Py_DivisionWarningFlag
459461_PyTrash_delete_later
460462_PyTrash_delete_nesting
@@ -544,8 +546,10 @@ subtype_getsets
544546PyType_Type
545547PyBaseObject_Type
546548PySuper_Type
549+ _PyObject_SlotCompare
547550PyType_Ready
548551_PyType_Lookup
552+ call_maybe
549553call_method
550554PyType_IsSubtype
551555PyType_GenericNew
@@ -655,7 +659,7 @@ Pstring
655659PyMac_StopGUSISpin
656660RotateCursor
657661SpinCursor
658- PyMac_GetFullPath
662+ PyMac_GetFullPathname
659663PyMac_AppRefNum
660664PyMac_options
661665console_output_state
@@ -790,6 +794,8 @@ PyUnicodeUCS2_DecodeUTF16
790794PyUnicodeUCS2_AsUTF8String
791795PyUnicodeUCS2_EncodeUTF8
792796PyUnicodeUCS2_DecodeUTF8
797+ PyUnicode_EncodeUTF7
798+ PyUnicode_DecodeUTF7
793799PyUnicodeUCS2_SetDefaultEncoding
794800PyUnicodeUCS2_GetDefaultEncoding
795801PyUnicodeUCS2_GetSize
@@ -843,6 +849,7 @@ PyExc_NotImplementedError
843849PyExc_SyntaxError
844850PyExc_IndentationError
845851PyExc_TabError
852+ PyExc_ReferenceError
846853PyExc_SystemError
847854PyExc_SystemExit
848855PyExc_UnboundLocalError
@@ -877,6 +884,7 @@ PyCallIter_New
877884PySeqIter_New
878885PyOS_vsnprintf
879886PyOS_snprintf
887+ PyWrapperDescr_Type
880888proxytype
881889wrappertype
882890PyProperty_Type
@@ -1020,6 +1028,14 @@ PyErr_Mac
10201028PyMac_GetOSErrException
10211029PyMac_StrError
10221030PyMac_getscript
1031+ _PyWeakref_RefType
1032+ _PyWeakref_ProxyType
1033+ _PyWeakref_CallableProxyType
1034+ PyObject_ClearWeakRefs
1035+ PyWeakref_GetObject
1036+ PyWeakref_NewProxy
1037+ PyWeakref_NewRef
1038+ _PyWeakref_GetWeakrefCount
10231039GUSISetupConsoleStdio
10241040GUSIStdioFlush
10251041GUSIStdioClose
You can’t perform that action at this time.
0 commit comments