summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-02-02 22:47:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-02-02 22:47:00 (GMT)
commit05b7c5644c9c7a5e7b656fc241e45ff171c16d84 (patch)
treed07ae9c29a199cb8c6a204668c1a9ac13a6bd07f /Misc
parentb1f7b7bef58a2e60eeb61180b400e13f487e139f (diff)
downloadcpython-05b7c5644c9c7a5e7b656fc241e45ff171c16d84.zip
cpython-05b7c5644c9c7a5e7b656fc241e45ff171c16d84.tar.gz
cpython-05b7c5644c9c7a5e7b656fc241e45ff171c16d84.tar.bz2
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 02cdfbe..7632762 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
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.