diff options
author | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:54:13 (GMT) |
---|---|---|
committer | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:54:13 (GMT) |
commit | d05595697d70bef1c5cf66484e1d1102d510152e (patch) | |
tree | 6226ead31564a8c7fb1177a261ab3c7402c8c89a /Modules | |
parent | 35722a93768e942be31270fe60acff138d878b26 (diff) | |
parent | d6c1d57195d907a8187442cd2f3e9d9575d6b4a8 (diff) | |
download | cpython-d05595697d70bef1c5cf66484e1d1102d510152e.zip cpython-d05595697d70bef1c5cf66484e1d1102d510152e.tar.gz cpython-d05595697d70bef1c5cf66484e1d1102d510152e.tar.bz2 |
Merge 3.1
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 1227de0..b5f2a69 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -913,7 +913,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) |