improve compact dict changelog

This commit is contained in:
Benjamin Peterson 2016-09-08 10:13:42 -07:00
parent 2376316857
commit e5e3edb920
1 changed files with 4 additions and 4 deletions

View File

@ -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