summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-02-02 22:51:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-02-02 22:51:34 (GMT)
commit93368182a239f462a001ca5690353ec93512d6ac (patch)
treec10007453f6d491b9793b70f0737114b4df8d3d3 /Misc
parent9f92a2b5a1dc2ec237ca1a744e3774635192cb33 (diff)
downloadcpython-93368182a239f462a001ca5690353ec93512d6ac.zip
cpython-93368182a239f462a001ca5690353ec93512d6ac.tar.gz
cpython-93368182a239f462a001ca5690353ec93512d6ac.tar.bz2
Merged revisions 77918 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77918 | antoine.pitrou | 2010-02-02 23:47:00 +0100 (mar., 02 févr. 2010) | 10 lines Merged revisions 77916 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77916 | antoine.pitrou | 2010-02-02 23:36:17 +0100 (mar., 02 févr. 2010) | 4 lines Issue #7385: Fix a crash in `MemoryView_FromObject` when `PyObject_GetBuffer` fails. Patch by Florent Xicluna. ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 18770a7..d4a136a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.2?
Core and Builtins
-----------------
+- Issue #7385: Fix a crash in `MemoryView_FromObject` when
+ `PyObject_GetBuffer` fails. Patch by Florent Xicluna.
+
- Issue #7788: Fix an interpreter crash produced by deleting a list
slice with very large step value.