Skip to content

Commit 0dc1fa6

Browse files
Sort and remove duplicates from PC/python3.def (issue #23903).
2 parents 6df6676 + ab23347 commit 0dc1fa6

1 file changed

Lines changed: 24 additions & 25 deletions

File tree

PC/python3.def

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,8 @@ EXPORTS
318318
PyMemoryView_GetContiguous=python36.PyMemoryView_GetContiguous
319319
PyMemoryView_Type=python36.PyMemoryView_Type DATA
320320
PyMethodDescr_Type=python36.PyMethodDescr_Type DATA
321+
PyModuleDef_Init=python36.PyModuleDef_Init
322+
PyModuleDef_Type=python36.PyModuleDef_Type DATA
321323
PyModule_AddIntConstant=python36.PyModule_AddIntConstant
322324
PyModule_AddObject=python36.PyModule_AddObject
323325
PyModule_AddStringConstant=python36.PyModule_AddStringConstant
@@ -330,8 +332,6 @@ EXPORTS
330332
PyModule_GetState=python36.PyModule_GetState
331333
PyModule_New=python36.PyModule_New
332334
PyModule_Type=python36.PyModule_Type DATA
333-
PyModuleDef_Init=python36.PyModuleDef_Init
334-
PyModuleDef_Type=python36.PyModuleDef_Type DATA
335335
PyNullImporter_Type=python36.PyNullImporter_Type DATA
336336
PyNumber_Absolute=python36.PyNumber_Absolute
337337
PyNumber_Add=python36.PyNumber_Add
@@ -368,6 +368,14 @@ EXPORTS
368368
PyNumber_ToBase=python36.PyNumber_ToBase
369369
PyNumber_TrueDivide=python36.PyNumber_TrueDivide
370370
PyNumber_Xor=python36.PyNumber_Xor
371+
PyODictItems_Type=python36.PyODictItems_Type DATA
372+
PyODictIter_Type=python36.PyODictIter_Type DATA
373+
PyODictKeys_Type=python36.PyODictKeys_Type DATA
374+
PyODictValues_Type=python36.PyODictValues_Type DATA
375+
PyODict_DelItem=python36.PyODict_DelItem
376+
PyODict_New=python36.PyODict_New
377+
PyODict_SetItem=python36.PyODict_SetItem
378+
PyODict_Type=python36.PyODict_Type DATA
371379
PyOS_AfterFork=python36.PyOS_AfterFork
372380
PyOS_InitInterrupts=python36.PyOS_InitInterrupts
373381
PyOS_InputHook=python36.PyOS_InputHook DATA
@@ -434,14 +442,6 @@ EXPORTS
434442
PyObject_Size=python36.PyObject_Size
435443
PyObject_Str=python36.PyObject_Str
436444
PyObject_Type=python36.PyObject_Type DATA
437-
PyODict_DelItem=python36.PyODict_DelItem
438-
PyODict_New=python36.PyODict_New
439-
PyODict_SetItem=python36.PyODict_SetItem
440-
PyODict_Type=python36.PyODict_Type DATA
441-
PyODictItems_Type=python36.PyODictItems_Type DATA
442-
PyODictIter_Type=python36.PyODictIter_Type DATA
443-
PyODictKeys_Type=python36.PyODictKeys_Type DATA
444-
PyODictValues_Type=python36.PyODictValues_Type DATA
445445
PyParser_SimpleParseFileFlags=python36.PyParser_SimpleParseFileFlags
446446
PyParser_SimpleParseStringFlags=python36.PyParser_SimpleParseStringFlags
447447
PyProperty_Type=python36.PyProperty_Type DATA
@@ -484,8 +484,8 @@ EXPORTS
484484
PySlice_New=python36.PySlice_New
485485
PySlice_Type=python36.PySlice_Type DATA
486486
PySortWrapper_Type=python36.PySortWrapper_Type DATA
487-
PyState_FindModule=python36.PyState_FindModule
488487
PyState_AddModule=python36.PyState_AddModule
488+
PyState_FindModule=python36.PyState_FindModule
489489
PyState_RemoveModule=python36.PyState_RemoveModule
490490
PyStructSequence_GetItem=python36.PyStructSequence_GetItem
491491
PyStructSequence_New=python36.PyStructSequence_New
@@ -577,8 +577,10 @@ EXPORTS
577577
PyUnicode_AsUTF8String=python36.PyUnicode_AsUTF8String
578578
PyUnicode_AsUnicodeEscapeString=python36.PyUnicode_AsUnicodeEscapeString
579579
PyUnicode_AsWideChar=python36.PyUnicode_AsWideChar
580+
PyUnicode_BuildEncodingMap=python36.PyUnicode_BuildEncodingMap
580581
PyUnicode_ClearFreelist=python36.PyUnicode_ClearFreelist
581582
PyUnicode_Compare=python36.PyUnicode_Compare
583+
PyUnicode_CompareWithASCIIString=python36.PyUnicode_CompareWithASCIIString
582584
PyUnicode_Concat=python36.PyUnicode_Concat
583585
PyUnicode_Contains=python36.PyUnicode_Contains
584586
PyUnicode_Count=python36.PyUnicode_Count
@@ -593,9 +595,12 @@ EXPORTS
593595
PyUnicode_DecodeUTF16Stateful=python36.PyUnicode_DecodeUTF16Stateful
594596
PyUnicode_DecodeUTF32=python36.PyUnicode_DecodeUTF32
595597
PyUnicode_DecodeUTF32Stateful=python36.PyUnicode_DecodeUTF32Stateful
598+
PyUnicode_DecodeUTF7=python36.PyUnicode_DecodeUTF7
599+
PyUnicode_DecodeUTF7Stateful=python36.PyUnicode_DecodeUTF7Stateful
596600
PyUnicode_DecodeUTF8=python36.PyUnicode_DecodeUTF8
597601
PyUnicode_DecodeUTF8Stateful=python36.PyUnicode_DecodeUTF8Stateful
598602
PyUnicode_DecodeUnicodeEscape=python36.PyUnicode_DecodeUnicodeEscape
603+
PyUnicode_EncodeFSDefault=python36.PyUnicode_EncodeFSDefault
599604
PyUnicode_FSConverter=python36.PyUnicode_FSConverter
600605
PyUnicode_FSDecoder=python36.PyUnicode_FSDecoder
601606
PyUnicode_Find=python36.PyUnicode_Find
@@ -610,6 +615,9 @@ EXPORTS
610615
PyUnicode_FromWideChar=python36.PyUnicode_FromWideChar
611616
PyUnicode_GetDefaultEncoding=python36.PyUnicode_GetDefaultEncoding
612617
PyUnicode_GetSize=python36.PyUnicode_GetSize
618+
PyUnicode_InternFromString=python36.PyUnicode_InternFromString
619+
PyUnicode_InternImmortal=python36.PyUnicode_InternImmortal
620+
PyUnicode_InternInPlace=python36.PyUnicode_InternInPlace
613621
PyUnicode_IsIdentifier=python36.PyUnicode_IsIdentifier
614622
PyUnicode_Join=python36.PyUnicode_Join
615623
PyUnicode_Partition=python36.PyUnicode_Partition
@@ -623,14 +631,6 @@ EXPORTS
623631
PyUnicode_Splitlines=python36.PyUnicode_Splitlines
624632
PyUnicode_Tailmatch=python36.PyUnicode_Tailmatch
625633
PyUnicode_Translate=python36.PyUnicode_Translate
626-
PyUnicode_BuildEncodingMap=python36.PyUnicode_BuildEncodingMap
627-
PyUnicode_CompareWithASCIIString=python36.PyUnicode_CompareWithASCIIString
628-
PyUnicode_DecodeUTF7=python36.PyUnicode_DecodeUTF7
629-
PyUnicode_DecodeUTF7Stateful=python36.PyUnicode_DecodeUTF7Stateful
630-
PyUnicode_EncodeFSDefault=python36.PyUnicode_EncodeFSDefault
631-
PyUnicode_InternFromString=python36.PyUnicode_InternFromString
632-
PyUnicode_InternImmortal=python36.PyUnicode_InternImmortal
633-
PyUnicode_InternInPlace=python36.PyUnicode_InternInPlace
634634
PyUnicode_Type=python36.PyUnicode_Type DATA
635635
PyWeakref_GetObject=python36.PyWeakref_GetObject DATA
636636
PyWeakref_NewProxy=python36.PyWeakref_NewProxy
@@ -676,6 +676,11 @@ EXPORTS
676676
Py_SetRecursionLimit=python36.Py_SetRecursionLimit
677677
Py_SymtableString=python36.Py_SymtableString
678678
Py_VaBuildValue=python36.Py_VaBuildValue
679+
_PyArg_ParseTupleAndKeywords_SizeT=python36._PyArg_ParseTupleAndKeywords_SizeT
680+
_PyArg_ParseTuple_SizeT=python36._PyArg_ParseTuple_SizeT
681+
_PyArg_Parse_SizeT=python36._PyArg_Parse_SizeT
682+
_PyArg_VaParseTupleAndKeywords_SizeT=python36._PyArg_VaParseTupleAndKeywords_SizeT
683+
_PyArg_VaParse_SizeT=python36._PyArg_VaParse_SizeT
679684
_PyErr_BadInternalCall=python36._PyErr_BadInternalCall
680685
_PyObject_CallFunction_SizeT=python36._PyObject_CallFunction_SizeT
681686
_PyObject_CallMethod_SizeT=python36._PyObject_CallMethod_SizeT
@@ -706,9 +711,3 @@ EXPORTS
706711
_Py_SwappedOp=python36._Py_SwappedOp DATA
707712
_Py_TrueStruct=python36._Py_TrueStruct DATA
708713
_Py_VaBuildValue_SizeT=python36._Py_VaBuildValue_SizeT
709-
_PyArg_Parse_SizeT=python36._PyArg_Parse_SizeT
710-
_PyArg_ParseTuple_SizeT=python36._PyArg_ParseTuple_SizeT
711-
_PyArg_ParseTupleAndKeywords_SizeT=python36._PyArg_ParseTupleAndKeywords_SizeT
712-
_PyArg_VaParse_SizeT=python36._PyArg_VaParse_SizeT
713-
_PyArg_VaParseTupleAndKeywords_SizeT=python36._PyArg_VaParseTupleAndKeywords_SizeT
714-
_Py_BuildValue_SizeT=python36._Py_BuildValue_SizeT

0 commit comments

Comments
 (0)