diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-30 00:38:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-30 00:38:15 (GMT) |
commit | 010a94848943b543dd54661e7e3857f19aabd741 (patch) | |
tree | 21830709d8cc26310ec64cfa4acff7abb8f21b05 /Modules | |
parent | 3a4ea3d966862c721cbf963e549e4fa6eb7a49d2 (diff) | |
parent | 4974705a025e612608358f3b62e36424bb8c7d96 (diff) | |
download | cpython-010a94848943b543dd54661e7e3857f19aabd741.zip cpython-010a94848943b543dd54661e7e3857f19aabd741.tar.gz cpython-010a94848943b543dd54661e7e3857f19aabd741.tar.bz2 |
Issue 11713: clarify docstring for collections.deque()
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 2391c0d..5545d1e 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1002,7 +1002,7 @@ static PyMethodDef deque_methods[] = { PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) |