diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-24 20:53:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-24 20:53:48 (GMT) |
commit | 915605c59a82ca0f0015c4deec40b3e211ccb0c1 (patch) | |
tree | ab036ac0f497a40d837148444ff2d17cd32787dd /Misc | |
parent | ec8f0df2296cfb88cd932eeb053edaa316600725 (diff) | |
download | cpython-915605c59a82ca0f0015c4deec40b3e211ccb0c1.zip cpython-915605c59a82ca0f0015c4deec40b3e211ccb0c1.tar.gz cpython-915605c59a82ca0f0015c4deec40b3e211ccb0c1.tar.bz2 |
Merged revisions 88550 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88550 | antoine.pitrou | 2011-02-24 21:50:49 +0100 (jeu., 24 févr. 2011) | 4 lines
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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.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'). |