commit | 227f59b29c13ce894eb8b2eab183cd4d7e07f897 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Oct 31 11:50:00 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Oct 31 11:50:00 2012 +0200 |
tree | 49cee94f50585881ba82a5c0e742f5fbff0670c5 | |
parent | 6da3ed63d83375f183fa94cbf7c55acea128e088 [diff] [blame] |
Fix docstring for deque ctor to mark iterable parameter optional
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 41ce61f..242abf2 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c
@@ -1077,7 +1077,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.");