cpython: f4e6e18cae4b (original) (raw)

Mercurial > cpython

changeset 69058:f4e6e18cae4b 2.7

Issue 11713: clarify docstring for collections.deque()

Raymond Hettinger python@rcn.com
date Tue, 29 Mar 2011 17:28:25 -0700
parents 34d5d794ccc1
children 5e7fc2a42c3c
files Modules/_collectionsmodule.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Modules/_collectionsmodule.c 2

line wrap: on

line diff

--- 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[](#l1.5) \n[](#l1.6) -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)