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: http://git.ipfire.org/?a=commitdiff_plain;h=db9d64b36729985f91d785b96f8e69842387b068;p=thirdparty%2FPython%2Fcpython.git Issue 11713: clarify docstring for collections.deque() --- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index faa2577f2aae..ea5f7795dc93 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)