diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-30 14:49:09 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-30 14:49:09 (GMT) |
commit | 5844436adfa48b91ccd328c0bfd6ab1237a1311d (patch) | |
tree | 72cabf6ebcc9d1319649e7e60043f8624837693f /Doc | |
parent | ac5569b1fa483c50edca82bab1ab0a8a927ba86a (diff) | |
download | cpython-5844436adfa48b91ccd328c0bfd6ab1237a1311d.zip cpython-5844436adfa48b91ccd328c0bfd6ab1237a1311d.tar.gz cpython-5844436adfa48b91ccd328c0bfd6ab1237a1311d.tar.bz2 |
docs/whatsnew: Mention OrderedDict C implementation
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 0abdc3f..10a9a2b 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 |