]> granicus.if.org Git - python/commitdiff
docs/whatsnew: Mention OrderedDict C implementation
authorYury Selivanov <yselivanov@sprymix.com>
Sat, 30 May 2015 14:49:09 +0000 (10:49 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Sat, 30 May 2015 14:49:09 +0000 (10:49 -0400)
Doc/whatsnew/3.5.rst

index 0abdc3ff1cec87580432a4690124e40b501f83b5..10a9a2b32f077fc5e275444ef0c3c58f9d8f5f41 100644 (file)
@@ -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