Commit 227f59b2 authored by Andrew Svetlov's avatar Andrew Svetlov

Fix docstring for deque ctor to mark iterable parameter optional

parent 6da3ed63
...@@ -1077,7 +1077,7 @@ static PyMethodDef deque_methods[] = { ...@@ -1077,7 +1077,7 @@ static PyMethodDef deque_methods[] = {
}; };
PyDoc_STRVAR(deque_doc, PyDoc_STRVAR(deque_doc,
"deque(iterable[, maxlen]) --> deque object\n\ "deque([iterable[, maxlen]]) --> deque object\n\
\n\ \n\
Build an ordered collection with optimized access from its endpoints."); Build an ordered collection with optimized access from its endpoints.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment