]> granicus.if.org Git - python/commitdiff
correct defaultdict signature in docstring (closes #20250)
authorBenjamin Peterson <benjamin@python.org>
Tue, 14 Jan 2014 04:56:05 +0000 (23:56 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 14 Jan 2014 04:56:05 +0000 (23:56 -0500)
Patch from Andrew Barnert.

Modules/_collectionsmodule.c

index c6c79836002237c0b86ce38fefc1a1b45e9a0b70..3cf4764c4fba2f9ebd0930e364f6228cdea79dc9 100644 (file)
@@ -1625,11 +1625,13 @@ defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
 }
 
 PyDoc_STRVAR(defdict_doc,
-"defaultdict(default_factory) --> dict with default factory\n\
+"defaultdict(default_factory[, ...]) --> dict with default factory\n\
 \n\
 The default factory is called without arguments to produce\n\
 a new value when a key is not present, in __getitem__ only.\n\
 A defaultdict compares equal to a dict with the same items.\n\
+All remaining arguments are treated the same as if they were\n\
+passed to the dict constructor, including keyword arguments.\n\
 ");
 
 /* See comment in xxsubtype.c */