From: Raymond Hettinger Date: Wed, 30 Mar 2011 00:36:31 +0000 (-0700) Subject: Issue 11713: clarify docstring for collections.deque() X-Git-Tag: v3.2.1b1~189^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4974705a025e612608358f3b62e36424bb8c7d96;p=python Issue 11713: clarify docstring for collections.deque() --- diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 2391c0d381..5545d1eff2 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)