File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ What's New in Python 3.2?
1010Core and Builtins
1111-----------------
1212
13+ - Issue #11118: Fix bogus export of None in python3.dll.
14+
1315Library
1416-------
1517
Original file line number Diff line number Diff line change @@ -681,7 +681,7 @@ EXPORTS
681681 _Py_Dealloc=python32._Py_Dealloc
682682 _Py_EllipsisObject=python32._Py_EllipsisObject DATA
683683 _Py_FalseStruct=python32._Py_FalseStruct DATA
684- _Py_NoneStruct=python32.Py_GetCopyright
684+ _Py_NoneStruct=python32._Py_NoneStruct DATA
685685 _Py_NotImplementedStruct=python32._Py_NotImplementedStruct DATA
686686 _Py_SwappedOp=python32._Py_SwappedOp DATA
687687 _Py_TrueStruct=python32._Py_TrueStruct DATA
Original file line number Diff line number Diff line change @@ -10,13 +10,6 @@ PyArg_ValidateKeywordArguments
1010PyBaseObject_Type
1111PyBool_FromLong
1212PyBool_Type
13- PyBuffer_FillContiguousStrides
14- PyBuffer_FillInfo
15- PyBuffer_FromContiguous
16- PyBuffer_GetPointer
17- PyBuffer_IsContiguous
18- PyBuffer_Release
19- PyBuffer_ToContiguous
2013PyByteArrayIter_Type
2114PyByteArray_AsString
2215PyByteArray_Concat
@@ -317,7 +310,6 @@ PyMem_Free
317310PyMem_Malloc
318311PyMem_Realloc
319312PyMemberDescr_Type
320- PyMemoryView_FromBuffer
321313PyMemoryView_FromObject
322314PyMemoryView_GetContiguous
323315PyMemoryView_Type
@@ -399,7 +391,6 @@ PyObject_CallMethodObjArgs
399391PyObject_CallObject
400392PyObject_CheckReadBuffer
401393PyObject_ClearWeakRefs
402- PyObject_CopyData
403394PyObject_DelItem
404395PyObject_DelItemString
405396PyObject_Dir
@@ -412,7 +403,6 @@ PyObject_GenericGetAttr
412403PyObject_GenericSetAttr
413404PyObject_GetAttr
414405PyObject_GetAttrString
415- PyObject_GetBuffer
416406PyObject_GetItem
417407PyObject_GetIter
418408PyObject_HasAttr
@@ -691,7 +681,7 @@ _Py_CheckRecursiveCall
691681_Py_Dealloc
692682_Py_EllipsisObject
693683_Py_FalseStruct
694- Py_GetCopyright
684+ _Py_NoneStruct
695685_Py_NotImplementedStruct
696686_Py_SwappedOp
697687_Py_TrueStruct
You can’t perform that action at this time.
0 commit comments