Issue #28979: Fix What's New in Python 3.6, dict

The new dict implementation is not faster, but more compact.

Patch written by Brendan Donegan.
This commit is contained in:
Victor Stinner 2016-12-15 16:20:53 +01:00
parent 3d40e37883
commit 8320193d10
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ New library modules:
CPython implementation improvements:
* The :ref:`dict <typesmapping>` type has been reimplemented to use
a :ref:`faster, more compact representation <whatsnew36-compactdict>`
a :ref:`more compact representation <whatsnew36-compactdict>`
similar to the `PyPy dict implementation`_. This resulted in dictionaries
using 20% to 25% less memory when compared to Python 3.5.