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.");