mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Issue #11118: Fix bogus export of None in python3.dll.
This commit is contained in:
parent
4b0c24a3ae
commit
d77520a426
3 changed files with 4 additions and 12 deletions
|
|
@ -10,6 +10,8 @@ What's New in Python 3.2?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #11118: Fix bogus export of None in python3.dll.
|
||||||
|
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -681,7 +681,7 @@ EXPORTS
|
||||||
_Py_Dealloc=python32._Py_Dealloc
|
_Py_Dealloc=python32._Py_Dealloc
|
||||||
_Py_EllipsisObject=python32._Py_EllipsisObject DATA
|
_Py_EllipsisObject=python32._Py_EllipsisObject DATA
|
||||||
_Py_FalseStruct=python32._Py_FalseStruct DATA
|
_Py_FalseStruct=python32._Py_FalseStruct DATA
|
||||||
_Py_NoneStruct=python32.Py_GetCopyright
|
_Py_NoneStruct=python32._Py_NoneStruct DATA
|
||||||
_Py_NotImplementedStruct=python32._Py_NotImplementedStruct DATA
|
_Py_NotImplementedStruct=python32._Py_NotImplementedStruct DATA
|
||||||
_Py_SwappedOp=python32._Py_SwappedOp DATA
|
_Py_SwappedOp=python32._Py_SwappedOp DATA
|
||||||
_Py_TrueStruct=python32._Py_TrueStruct DATA
|
_Py_TrueStruct=python32._Py_TrueStruct DATA
|
||||||
|
|
|
||||||
|
|
@ -10,13 +10,6 @@ PyArg_ValidateKeywordArguments
|
||||||
PyBaseObject_Type
|
PyBaseObject_Type
|
||||||
PyBool_FromLong
|
PyBool_FromLong
|
||||||
PyBool_Type
|
PyBool_Type
|
||||||
PyBuffer_FillContiguousStrides
|
|
||||||
PyBuffer_FillInfo
|
|
||||||
PyBuffer_FromContiguous
|
|
||||||
PyBuffer_GetPointer
|
|
||||||
PyBuffer_IsContiguous
|
|
||||||
PyBuffer_Release
|
|
||||||
PyBuffer_ToContiguous
|
|
||||||
PyByteArrayIter_Type
|
PyByteArrayIter_Type
|
||||||
PyByteArray_AsString
|
PyByteArray_AsString
|
||||||
PyByteArray_Concat
|
PyByteArray_Concat
|
||||||
|
|
@ -317,7 +310,6 @@ PyMem_Free
|
||||||
PyMem_Malloc
|
PyMem_Malloc
|
||||||
PyMem_Realloc
|
PyMem_Realloc
|
||||||
PyMemberDescr_Type
|
PyMemberDescr_Type
|
||||||
PyMemoryView_FromBuffer
|
|
||||||
PyMemoryView_FromObject
|
PyMemoryView_FromObject
|
||||||
PyMemoryView_GetContiguous
|
PyMemoryView_GetContiguous
|
||||||
PyMemoryView_Type
|
PyMemoryView_Type
|
||||||
|
|
@ -399,7 +391,6 @@ PyObject_CallMethodObjArgs
|
||||||
PyObject_CallObject
|
PyObject_CallObject
|
||||||
PyObject_CheckReadBuffer
|
PyObject_CheckReadBuffer
|
||||||
PyObject_ClearWeakRefs
|
PyObject_ClearWeakRefs
|
||||||
PyObject_CopyData
|
|
||||||
PyObject_DelItem
|
PyObject_DelItem
|
||||||
PyObject_DelItemString
|
PyObject_DelItemString
|
||||||
PyObject_Dir
|
PyObject_Dir
|
||||||
|
|
@ -412,7 +403,6 @@ PyObject_GenericGetAttr
|
||||||
PyObject_GenericSetAttr
|
PyObject_GenericSetAttr
|
||||||
PyObject_GetAttr
|
PyObject_GetAttr
|
||||||
PyObject_GetAttrString
|
PyObject_GetAttrString
|
||||||
PyObject_GetBuffer
|
|
||||||
PyObject_GetItem
|
PyObject_GetItem
|
||||||
PyObject_GetIter
|
PyObject_GetIter
|
||||||
PyObject_HasAttr
|
PyObject_HasAttr
|
||||||
|
|
@ -691,7 +681,7 @@ _Py_CheckRecursiveCall
|
||||||
_Py_Dealloc
|
_Py_Dealloc
|
||||||
_Py_EllipsisObject
|
_Py_EllipsisObject
|
||||||
_Py_FalseStruct
|
_Py_FalseStruct
|
||||||
Py_GetCopyright
|
_Py_NoneStruct
|
||||||
_Py_NotImplementedStruct
|
_Py_NotImplementedStruct
|
||||||
_Py_SwappedOp
|
_Py_SwappedOp
|
||||||
_Py_TrueStruct
|
_Py_TrueStruct
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue