From: Yury Selivanov Date: Sat, 30 May 2015 14:49:09 +0000 (-0400) Subject: docs/whatsnew: Mention OrderedDict C implementation X-Git-Tag: v3.5.0b2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5844436adfa48b91ccd328c0bfd6ab1237a1311d;p=thirdparty%2FPython%2Fcpython.git docs/whatsnew: Mention OrderedDict C implementation --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 0abdc3ff1cec..10a9a2b32f07 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -97,6 +97,10 @@ Implementation improvements: Significantly Improved Library Modules: +* :class:`collections.OrderedDict` is now implemented in C, which improves + its performance between 4x to 100x times. Contributed by Eric Snow in + :issue:`16991`. + * You may now pass bytes to the :mod:`tempfile` module's APIs and it will return the temporary pathname as bytes instead of str. It also accepts a value of ``None`` on parameters where only str was accepted in the past to