From 2f36c2d9281c3a69acb6deed92a525ca274e5cdf Mon Sep 17 00:00:00 2001 From: Xiang Zhang Date: Tue, 7 Feb 2017 01:53:59 +0800 Subject: [PATCH] Ordered **kwargs starts in 3.6 instead of 3.5. (#200) --- pep-0468.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0468.txt b/pep-0468.txt index a14c210414d..eca0b5a59c2 100644 --- a/pep-0468.txt +++ b/pep-0468.txt @@ -168,7 +168,7 @@ that this feature will not be a significant burden. Specification ============= -Starting in version 3.5 Python will preserve the order of keyword +Starting in version 3.6 Python will preserve the order of keyword arguments as passed to a function. To accomplish this the collected kwargs will now be an ordered mapping. Note that this does not necessarily mean OrderedDict. dict in CPython 3.6 is now ordered, similar to PyPy.