summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorlarryhastings <larry@hastings.org>2018-01-28 19:13:09 (GMT)
committerGitHub <noreply@github.com>2018-01-28 19:13:09 (GMT)
commitf36ba12809d5db1b76464d8f1f04dad8d685ec78 (patch)
tree62de617e1bd3fc4609e1f95338755887db22f4b5 /Misc
parentbec2372b7e1da5dfdbadaf242aa8e994b164cace (diff)
downloadcpython-f36ba12809d5db1b76464d8f1f04dad8d685ec78.zip
cpython-f36ba12809d5db1b76464d8f1f04dad8d685ec78.tar.gz
cpython-f36ba12809d5db1b76464d8f1f04dad8d685ec78.tar.bz2
bpo-32697: Definition order of kwonly params is now guaranteed preserved. (#5391)
Definition order of kwonly params is now guaranteed preserved.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-52-12.bpo-32697.RHlu6k.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-52-12.bpo-32697.RHlu6k.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-52-12.bpo-32697.RHlu6k.rst
new file mode 100644
index 0000000..97bc310
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-52-12.bpo-32697.RHlu6k.rst
@@ -0,0 +1,3 @@
+Python now explicitly preserves the definition order of keyword-only
+parameters. It's always preserved their order, but this behavior was never
+guaranteed before; this behavior is now guaranteed and tested.