diff -r bc5f257f5cc1 Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c Sun Jan 12 14:12:59 2014 -0800 +++ b/Modules/_collectionsmodule.c Mon Jan 13 20:04:58 2014 -0800 @@ -1699,11 +1699,13 @@ } 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 */