]> granicus.if.org Git - python/commitdiff
Issue #15814: Update whatsnew to the current state of hashing memoryviews.
authorStefan Krah <skrah@bytereef.org>
Sat, 8 Sep 2012 13:35:01 +0000 (15:35 +0200)
committerStefan Krah <skrah@bytereef.org>
Sat, 8 Sep 2012 13:35:01 +0000 (15:35 +0200)
Doc/whatsnew/3.3.rst

index 3891eb184850e410c716bcd0997db791ae94ab90..caa838f353291e5287a63a7054bc5e0f0894a635 100644 (file)
@@ -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.