From: Stefan Krah Date: Sat, 8 Sep 2012 13:35:01 +0000 (+0200) Subject: Issue #15814: Update whatsnew to the current state of hashing memoryviews. X-Git-Tag: v3.3.1rc1~818^2^2~129 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37a0170fa3e5023952040479675fd2002ffe3592;p=python Issue #15814: Update whatsnew to the current state of hashing memoryviews. --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 3891eb1848..caa838f353 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -158,9 +158,8 @@ Features * Multi-dimensional comparisons are supported for any array type. -* All array types are hashable if the exporting object is hashable - and the view is read-only. (Contributed by Antoine Pitrou in - :issue:`13411`) +* One-dimensional memoryviews of hashable (read-only) types with formats B, + b or c are now hashable. (Contributed by Antoine Pitrou in :issue:`13411`) * Arbitrary slicing of any 1-D arrays type is supported. For example, it is now possible to reverse a memoryview in O(1) by using a negative step.