summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-09-16 16:18:29 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-09-16 16:18:29 (GMT)
commit8e3b04c70bbe540a8bda49d5fa7797e4f20b78e2 (patch)
tree3ca894a042cfcb3ed2258e3649e239733f8473d7 /Doc/whatsnew
parent60208a161df5e77af91ae8230e089a0f2805872b (diff)
downloadcpython-8e3b04c70bbe540a8bda49d5fa7797e4f20b78e2.zip
cpython-8e3b04c70bbe540a8bda49d5fa7797e4f20b78e2.tar.gz
cpython-8e3b04c70bbe540a8bda49d5fa7797e4f20b78e2.tar.bz2
whatsnew/3.5: Reword bytes*.hex message
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index edd6f60..8c85b14 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -76,9 +76,8 @@ New built-in features:
* ``bytes % args``, ``bytearray % args``: :ref:`PEP 461 <whatsnew-pep-461>` --
Adding ``%`` formatting to bytes and bytearray.
-* ``b'\xf0\x9f\x90\x8d'.hex()``, ``bytearray(b'\xf0\x9f\x90\x8d').hex()``,
- ``memoryview(b'\xf0\x9f\x90\x8d').hex()``: :issue:`9951` - A ``hex`` method
- has been added to bytes, bytearray, and memoryview.
+* New :meth:`bytes.hex`, :meth:`bytearray.hex` and :meth:`memoryview.hex`
+ methods. (Contributed by Arnon Yaari in :issue:`9951`.)
* :class:`memoryview` now supports tuple indexing (including multi-dimensional).
(Contributed by Antoine Pitrou in :issue:`23632`.)