From: Raymond Hettinger Date: Wed, 30 Mar 2011 00:28:25 +0000 (-0700) Subject: Issue 11713: clarify docstring for collections.deque() X-Git-Tag: v2.7.2rc1~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db9d64b36729985f91d785b96f8e69842387b068;p=python Issue 11713: clarify docstring for collections.deque() --- 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)