aboutsummaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 09:33:23 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-09 09:33:23 -0700
commitf7e9dfbee27294b4d9a3901a9450f29fd1741be9 (patch)
tree82844523bbb1416ece02f8870bb98f78f653814c /Doc
parentFixes expected error when getting encoding while shutting down. (diff)
downloadcpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.tar.gz
cpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.tar.bz2
cpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.zip
credit Raymond
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 23b8a32bb07..8168b590ab1 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -404,7 +404,9 @@ Some smaller changes made to the core Python language are:
* :func:`dict` now uses a "compact" representation `pioneered by PyPy
<https://morepypy.blogspot.com/2015/01/faster-more-memory-efficient-and-more.html>`_.
:pep:`468` (Preserving the order of ``**kwargs`` in a function.) is
- implemented by this. (Contributed by INADA Naoki in :issue:`27350`.)
+ implemented by this. (Contributed by INADA Naoki in :issue:`27350`. Idea
+ `originally suggested by Raymond Hettinger
+ <https://mail.python.org/pipermail/python-dev/2012-December/123028.html>`_.)
* Long sequences of repeated traceback lines are now abbreviated as
``"[Previous line repeated {count} more times]"`` (see