From: R David Murray Date: Sat, 1 Mar 2014 17:09:55 +0000 (-0500) Subject: whatsnew: memoryview is Sequence and supports Reversed. X-Git-Tag: v3.4.1rc1~233^2~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db8843f36e5d0129414922a4802af9aa22fcceb8;p=thirdparty%2FPython%2Fcpython.git whatsnew: memoryview is Sequence and supports Reversed. --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 2396f075e32c..c220da959bbd 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -377,6 +377,10 @@ Some smaller changes made to the core Python language are: references to local variables from the frame. (Contributed by Antoine Pitrou in :issue:`17934`.) +* :class:`memoryview` is now registered as a :class:`Sequence `, + and supports the :func:`reversed` builtin. (Contributed by Nick Coghlan + and Claudiu Popa in :issue:`18690` and :issue:`19078`.) + New Modules ===========