diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-29 21:47:11 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-29 21:47:11 (GMT) |
commit | 7b578b3d8973508863eb8e7b7151e3dd53f2cd79 (patch) | |
tree | 6b1f1dde2bb8f572de362eb419485cddc4faa94a /Doc/whatsnew/3.3.rst | |
parent | 0599b5b2a10625e75554ca2b0ecc1ff07b855763 (diff) | |
download | cpython-7b578b3d8973508863eb8e7b7151e3dd53f2cd79.zip cpython-7b578b3d8973508863eb8e7b7151e3dd53f2cd79.tar.gz cpython-7b578b3d8973508863eb8e7b7151e3dd53f2cd79.tar.bz2 |
Mention hashable memoryviews, and reformat.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 5c69ea7..528b097 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -259,26 +259,26 @@ Other Language Changes Some smaller changes made to the core Python language are: -* Stub +* Added support for Unicode name aliases and named sequences. + Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases, + and :func:`unicodedata.lookup()` resolves named sequences too. -Added support for Unicode name aliases and named sequences. -Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases, -and :func:`unicodedata.lookup()` resolves named sequences too. + (Contributed by Ezio Melotti in :issue:`12753`) -(Contributed by Ezio Melotti in :issue:`12753`) +* Equality comparisons on :func:`range` objects now return a result reflecting + the equality of the underlying sequences generated by those range objects. + (:issue:`13021`) -Equality comparisons on :func:`range` objects now return a result reflecting -the equality of the underlying sequences generated by those range objects. +* The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()`` + methods of :class:`bytes` and :class:`bytearray` objects now accept an + integer between 0 and 255 as their first argument. -(:issue:`13021`) + (:issue:`12170`) +* Memoryview objects are now hashable when the underlying object is hashable. -The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()`` -methods of :class:`bytes` and :class:`bytearray` objects now accept an -integer between 0 and 255 as their first argument. - -(:issue:`12170`) + (Contributed by Antoine Pitrou in :issue:`13411`) New and Improved Modules |