(original) (raw)
changeset: 69058:f4e6e18cae4b branch: 2.7 user: Raymond Hettinger python@rcn.com date: Tue Mar 29 17:28:25 2011 -0700 files: Modules/_collectionsmodule.c description: Issue 11713: clarify docstring for collections.deque() diff -r 34d5d794ccc1 -r f4e6e18cae4b Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c Tue Mar 29 13:04:24 2011 -0700 +++ b/Modules/_collectionsmodule.c Tue Mar 29 17:28:25 2011 -0700 @@ -1060,7 +1060,7 @@ 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) /python@rcn.com