summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 16:33:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-09 16:33:23 (GMT)
commitf7e9dfbee27294b4d9a3901a9450f29fd1741be9 (patch)
tree82844523bbb1416ece02f8870bb98f78f653814c
parent6d5cf8a73e02a9b002323e4d72169d89782a4115 (diff)
downloadcpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.zip
cpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.tar.gz
cpython-f7e9dfbee27294b4d9a3901a9450f29fd1741be9.tar.bz2
credit Raymond
-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 23b8a32..8168b59 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