Skip to content

Commit ab23347

Browse files
Sort and remove duplicates from PC/python3.def (issue python#23903).
1 parent e31b15c commit ab23347

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

0 commit comments

Comments
 (0)