From: Benjamin Peterson Date: Thu, 8 Sep 2016 17:13:42 +0000 (-0700) Subject: improve compact dict changelog X-Git-Tag: v3.6.0b1~279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5e3edb920e0999a2c241d435cd774fbca3291a9;p=thirdparty%2FPython%2Fcpython.git improve compact dict changelog --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index a0de2b9a9b39..66f6b852e3e8 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 + `_. + :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