diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-30 00:36:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-30 00:36:31 (GMT) |
commit | 4974705a025e612608358f3b62e36424bb8c7d96 (patch) | |
tree | aae166448ab53ff0c826eccf2401ad7cff6f4384 /Modules | |
parent | 20d2ab435e541f79a8e94d7b02696ee9f6e49c8d (diff) | |
download | cpython-4974705a025e612608358f3b62e36424bb8c7d96.zip cpython-4974705a025e612608358f3b62e36424bb8c7d96.tar.gz cpython-4974705a025e612608358f3b62e36424bb8c7d96.tar.bz2 |
Issue 11713: clarify docstring for collections.deque()
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 2391c0d..5545d1e 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) |