Ordered **kwargs starts in 3.6 instead of 3.5. (#200)
This commit is contained in:
parent
67346590a7
commit
2f36c2d928
|
@ -168,7 +168,7 @@ that this feature will not be a significant burden.
|
||||||
Specification
|
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
|
arguments as passed to a function. To accomplish this the collected
|
||||||
kwargs will now be an ordered mapping. Note that this does not necessarily
|
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.
|
mean OrderedDict. dict in CPython 3.6 is now ordered, similar to PyPy.
|
||||||
|
|
Loading…
Reference in New Issue