diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-29 17:30:01 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-29 17:30:01 -0700 |
commit | d6c1d57195d907a8187442cd2f3e9d9575d6b4a8 (patch) | |
tree | 9b45f07ab9e33e3c4de7142a4ad2164a65067897 | |
parent | acb63092b7966f6329c337960729559e1c503364 (diff) | |
download | cpython-git-d6c1d57195d907a8187442cd2f3e9d9575d6b4a8.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 1227de01a4..b5f2a693af 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -913,7 +913,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) |