diff options
author | Jonathan Eunice <jonathan.eunice@gmail.com> | 2017-09-05 23:23:49 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-09-05 23:23:49 (GMT) |
commit | faa57cbe7074b26807cd7ed89a7b173b5cbf3086 (patch) | |
tree | 6cf355d13dcdd9fa0da98e29e7254e06845315f5 | |
parent | af46eb8d5f23c6f4e69a6a1f579fac8c2250b7c2 (diff) | |
download | cpython-faa57cbe7074b26807cd7ed89a7b173b5cbf3086.zip cpython-faa57cbe7074b26807cd7ed89a7b173b5cbf3086.tar.gz cpython-faa57cbe7074b26807cd7ed89a7b173b5cbf3086.tar.bz2 |
bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (#2179)
* fixed OrderedDict.__init__ docstring re PEP 468
* tightened comment and mirrored to C impl
* added space after period per marco-buttu
* preserved substituted for stable
* drop references to Python 3.6 and PEP 468
-rw-r--r-- | Lib/collections/__init__.py | 4 | ||||
-rw-r--r-- | Objects/odictobject.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 8408255..70cb683 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -85,9 +85,7 @@ class OrderedDict(dict): def __init__(*args, **kwds): '''Initialize an ordered dictionary. The signature is the same as - regular dictionaries, but keyword arguments are not recommended because - their insertion order is arbitrary. - + regular dictionaries. Keyword argument order is preserved. ''' if not args: raise TypeError("descriptor '__init__' of 'OrderedDict' object " diff --git a/Objects/odictobject.c b/Objects/odictobject.c index c3d1a09..e1ee53b 100644 --- a/Objects/odictobject.c +++ b/Objects/odictobject.c @@ -882,8 +882,7 @@ odict_eq(PyObject *a, PyObject *b) PyDoc_STRVAR(odict_init__doc__, "Initialize an ordered dictionary. The signature is the same as\n\ - regular dictionaries, but keyword arguments are not recommended because\n\ - their insertion order is arbitrary.\n\ + regular dictionaries. Keyword argument order is preserved.\n\ \n\ "); |