Ordered **kwargs starts in 3.6 instead of 3.5. (#200)

This commit is contained in:
Xiang Zhang 2017-02-07 01:53:59 +08:00 committed by ericsnowcurrently
parent 67346590a7
commit 2f36c2d928
1 changed files with 1 additions and 1 deletions

View File

@ -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.