diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-29 17:28:25 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-29 17:28:25 -0700 |
commit | db9d64b36729985f91d785b96f8e69842387b068 (patch) | |
tree | 2ec4b3518628b56fbfb06e1d586b7513a9f82d91 | |
parent | b885a5bbc85baca8406cf190f1f8641e74914608 (diff) | |
download | cpython-git-db9d64b36729985f91d785b96f8e69842387b068.tar.gz |
Issue 11713: clarify docstring for collections.deque()
-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 faa2577f2a..ea5f7795dc 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1060,7 +1060,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) |