summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-03 17:56:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-03 17:56:54 (GMT)
commit0e61ed8400cbd3ad4e845f23f8e36ce989271f1b (patch)
treeef007d2a623ebf55e2d390e0f16b4352d67db932 /Misc
parent026af2a597d94eb61310dd5360cf901529ef33a2 (diff)
parent60b183407cbcd19b211c2dd7ed9a59ff189844a8 (diff)
downloadcpython-0e61ed8400cbd3ad4e845f23f8e36ce989271f1b.zip
cpython-0e61ed8400cbd3ad4e845f23f8e36ce989271f1b.tar.gz
cpython-0e61ed8400cbd3ad4e845f23f8e36ce989271f1b.tar.bz2
Issue #19014: memoryview.cast() is now allowed on zero-length views.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02a92c1..2cd1e45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,13 +10,14 @@ Projected release date: 2013-10-20
Core and Builtins
-----------------
+- Issue #19014: memoryview.cast() is now allowed on zero-length views.
+
- Issue #18690: memoryview is now automatically registered with
collections.abc.Sequence
- Issue #19078: memoryview now correctly supports the reversed builtin
(Patch by Claudiu Popa)
-
Library
-------