diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-08 17:13:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-08 17:13:42 (GMT) |
commit | e5e3edb920e0999a2c241d435cd774fbca3291a9 (patch) | |
tree | b842050f328ad7785c70d7a35e4dbe8b5c5314b0 | |
parent | 23763168570842deebeb7dd683a619709bd7a467 (diff) | |
download | cpython-e5e3edb920e0999a2c241d435cd774fbca3291a9.zip cpython-e5e3edb920e0999a2c241d435cd774fbca3291a9.tar.gz cpython-e5e3edb920e0999a2c241d435cd774fbca3291a9.tar.bz2 |
improve compact dict changelog
-rw-r--r-- | Doc/whatsnew/3.6.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index a0de2b9..66f6b85 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -343,10 +343,10 @@ Other Language Changes Some smaller changes made to the core Python language are: -* `dict` implementation is changed like PyPy. It is more compact and preserves - insertion order. :pep:`PEP 468` (Preserving the order of `**kwargs` in a - function.) is implemented by this. - (Contributed by INADA Naoki in :issue:`27350`.) +* :func:`dict` now uses a "compact" representation `pioneered by PyPy + <https://morepypy.blogspot.com/2015/01/faster-more-memory-efficient-and-more.html>`_. + :pep:`PEP 468` (Preserving the order of ``**kwargs`` in a function.) is + implemented by this. (Contributed by INADA Naoki in :issue:`27350`.) * Long sequences of repeated traceback lines are now abbreviated as ``"[Previous line repeated {count} more times]"`` (see |