diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-02-02 22:36:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-02-02 22:36:17 (GMT) |
commit | 526e421b12654368443926b83fb0ca1e7ff027b4 (patch) | |
tree | c37bf012a0a5e1b5679983dc45dbc2b3994b39dc /Misc | |
parent | 1b93fc1077d0b99518035ffc7f63e568b8389e35 (diff) | |
download | cpython-526e421b12654368443926b83fb0ca1e7ff027b4.zip cpython-526e421b12654368443926b83fb0ca1e7ff027b4.tar.gz cpython-526e421b12654368443926b83fb0ca1e7ff027b4.tar.bz2 |
Issue #7385: Fix a crash in `MemoryView_FromObject` when
`PyObject_GetBuffer` fails. Patch by Florent Xicluna.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 3? Core and Builtins ----------------- +- Issue #7385: Fix a crash in `MemoryView_FromObject` when + `PyObject_GetBuffer` fails. Patch by Florent Xicluna. + - Issue #7819: Check sys.call_tracing() arguments types. - Issue #7788: Fix an interpreter crash produced by deleting a list |