Note default values for namedtuple extra args.
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 12560e2..7f98c59 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -566,7 +566,7 @@
self-documenting code. They can be used wherever regular tuples are used, and
they add the ability to access fields by name instead of position index.
-.. function:: namedtuple(typename, field_names, [verbose], [rename])
+.. function:: namedtuple(typename, field_names, [verbose=False], [rename=False])
Returns a new tuple subclass named *typename*. The new subclass is used to
create tuple-like objects that have fields accessible by attribute lookup as