[Python-checkins] r88333 - in python/branches/py3k: Misc/NEWS PC/python3.def PC/python32stub.def

martin.v.loewis python-checkins at python.org
Fri Feb 4 20:09:02 CET 2011


Author: martin.v.loewis
Date: Fri Feb  4 20:09:02 2011
New Revision: 88333

Log:
Issue #11118: Fix bogus export of None in python3.dll.

Modified:
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/PC/python3.def
   python/branches/py3k/PC/python32stub.def

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Fri Feb  4 20:09:02 2011
@@ -10,6 +10,8 @@
 Core and Builtins
 -----------------
 
+- Issue #11118: Fix bogus export of None in python3.dll.
+
 Library
 -------
 

Modified: python/branches/py3k/PC/python3.def
==============================================================================
--- python/branches/py3k/PC/python3.def	(original)
+++ python/branches/py3k/PC/python3.def	Fri Feb  4 20:09:02 2011
@@ -681,7 +681,7 @@
   _Py_Dealloc=python32._Py_Dealloc
   _Py_EllipsisObject=python32._Py_EllipsisObject 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_SwappedOp=python32._Py_SwappedOp DATA
   _Py_TrueStruct=python32._Py_TrueStruct DATA

Modified: python/branches/py3k/PC/python32stub.def
==============================================================================
--- python/branches/py3k/PC/python32stub.def	(original)
+++ python/branches/py3k/PC/python32stub.def	Fri Feb  4 20:09:02 2011
@@ -10,13 +10,6 @@
 PyBaseObject_Type
 PyBool_FromLong
 PyBool_Type
-PyBuffer_FillContiguousStrides
-PyBuffer_FillInfo
-PyBuffer_FromContiguous
-PyBuffer_GetPointer
-PyBuffer_IsContiguous
-PyBuffer_Release
-PyBuffer_ToContiguous
 PyByteArrayIter_Type
 PyByteArray_AsString
 PyByteArray_Concat
@@ -317,7 +310,6 @@
 PyMem_Malloc
 PyMem_Realloc
 PyMemberDescr_Type
-PyMemoryView_FromBuffer
 PyMemoryView_FromObject
 PyMemoryView_GetContiguous
 PyMemoryView_Type
@@ -399,7 +391,6 @@
 PyObject_CallObject
 PyObject_CheckReadBuffer
 PyObject_ClearWeakRefs
-PyObject_CopyData
 PyObject_DelItem
 PyObject_DelItemString
 PyObject_Dir
@@ -412,7 +403,6 @@
 PyObject_GenericSetAttr
 PyObject_GetAttr
 PyObject_GetAttrString
-PyObject_GetBuffer
 PyObject_GetItem
 PyObject_GetIter
 PyObject_HasAttr
@@ -691,7 +681,7 @@
 _Py_Dealloc
 _Py_EllipsisObject
 _Py_FalseStruct
-Py_GetCopyright
+_Py_NoneStruct
 _Py_NotImplementedStruct
 _Py_SwappedOp
 _Py_TrueStruct


More information about the Python-checkins mailing list