summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-09-08 15:35:01 +0200
committerStefan Krah <skrah@bytereef.org>2012-09-08 15:35:01 +0200
commit28c81f38ee50fd6ef44478f3ae86c73c4f3ed450 (patch)
treebd2d49ef03c57dcc0c5810f76336c11de7ddf252
parent91460e59fce8cd489c4b93b9d7dcbf63ca3a3a2b (diff)
downloadcpython-3.3.0rc2.tar.gz
Issue #15814: Update whatsnew to the current state of hashing memoryviews.v3.3.0rc2
-rw-r--r--Doc/whatsnew/3.3.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 47cbd4ec4d..9e6820391f 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.