diff options
author | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:55:52 (GMT) |
---|---|---|
committer | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:55:52 (GMT) |
commit | 8c5b74802606403208551e0ec579cc4266fc92dd (patch) | |
tree | 65e0d72d19e3bace523971ecc6da3fcd1d4433d3 /Modules | |
parent | fa3edbed251a06226ae77571dc9e16eb44bf902b (diff) | |
parent | 4974705a025e612608358f3b62e36424bb8c7d96 (diff) | |
download | cpython-8c5b74802606403208551e0ec579cc4266fc92dd.zip cpython-8c5b74802606403208551e0ec579cc4266fc92dd.tar.gz cpython-8c5b74802606403208551e0ec579cc4266fc92dd.tar.bz2 |
Merge
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) |