summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-02-24 20:50:49 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2011-02-24 20:50:49 +0000
commit686add8427a7ec49d9c646a5a522e94d3ca5acda (patch)
treedec8130414658ff94d14e5ccf74aa1972d32d424 /Misc
parent6a65882e6dc2c323026b6e50cde51fdad2109574 (diff)
downloadcpython-686add8427a7ec49d9c646a5a522e94d3ca5acda.tar.gz
Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
a buffer struct having a NULL data pointer.
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 6df1acef37..b58347d14d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
+ a buffer struct having a NULL data pointer.
+
- Issue #11272: On Windows, input() strips '\r' (and not only '\n'), and
sys.stdin uses universal newline (replace '\r\n' by '\n').