Kaydet (Commit) 4c668ed5 authored tarafından Andrew Svetlov's avatar Andrew Svetlov

Merge: fix docstring for deque ctor to mark iterable parameter optional

...@@ -1019,7 +1019,7 @@ static PyMethodDef deque_methods[] = { ...@@ -1019,7 +1019,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