diff options
| author | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:39:24 +0000 |
|---|---|---|
| committer | Kristjan Valur Jonsson <sweskman@gmail.com> | 2011-03-30 11:39:24 +0000 |
| commit | 3c136e19b9de13f8d4163a0feb3af54ab8b8c765 (patch) | |
| tree | 8a0c2faa0a95fc1ddaf994f9b8cc6ecd88b547d9 /Modules/_collectionsmodule.c | |
| parent | 978da33c7a07bf133d144a7ad342de7e20777250 (diff) | |
| parent | 010a94848943b543dd54661e7e3857f19aabd741 (diff) | |
| download | cpython-git-3c136e19b9de13f8d4163a0feb3af54ab8b8c765.tar.gz | |
Merge
Diffstat (limited to 'Modules/_collectionsmodule.c')
| -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 2391c0d381..5545d1eff2 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) |
