diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-09-08 13:35:01 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-09-08 13:35:01 (GMT) |
commit | 37a0170fa3e5023952040479675fd2002ffe3592 (patch) | |
tree | 7c494917a4354fc07ef668e3120881bf3ef7ec21 | |
parent | ea94ba45fa845e5792020ffb5bb70f88f8642366 (diff) | |
download | cpython-37a0170fa3e5023952040479675fd2002ffe3592.zip cpython-37a0170fa3e5023952040479675fd2002ffe3592.tar.gz cpython-37a0170fa3e5023952040479675fd2002ffe3592.tar.bz2 |
Issue #15814: Update whatsnew to the current state of hashing memoryviews.
-rw-r--r-- | Doc/whatsnew/3.3.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 3891eb1..caa838f 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. |