commit | 6a5c7c341ac654bda89b2d111aecb6d0a08fe6a2 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Oct 31 11:50:40 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Oct 31 11:50:40 2012 +0200 |
tree | 79f1d58a0da296c42dda40e04fa74f52cc571f7e | |
parent | c43112823b1f748822c43ad42566537580c02af2 [diff] |
Fix docstring for deque ctor to mark iterable parameter optional
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 314bafd..54c1343 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c
@@ -1019,7 +1019,7 @@ }; PyDoc_STRVAR(deque_doc, -"deque(iterable[, maxlen]) --> deque object\n\ +"deque([iterable[, maxlen]]) --> deque object\n\ \n\ Build an ordered collection with optimized access from its endpoints.");