]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41621: Document defaultdict's default_factory parameter (GH-21945)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 23 Jun 2021 14:58:20 +0000 (07:58 -0700)
committerGitHub <noreply@github.com>
Wed, 23 Jun 2021 14:58:20 +0000 (10:58 -0400)
It defaults to None and is positional only.
(cherry picked from commit d1ae57027fc39ff60dcfc1b63881400e5ca3ce56)

Co-authored-by: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com>
Doc/library/collections.rst
Misc/NEWS.d/next/Documentation/2020-08-24-13-35-04.bpo-41621.nqaw9G.rst [new file with mode: 0644]
Modules/_collectionsmodule.c

index 94166ec6c754a78decd9718cbedd43b09f6aee30..a63090414d43983c392cb34168e66521857b8b7f 100644 (file)
@@ -707,9 +707,9 @@ stack manipulations such as ``dup``, ``drop``, ``swap``, ``over``, ``pick``,
 :class:`defaultdict` objects
 ----------------------------
 
-.. class:: defaultdict([default_factory[, ...]])
+.. class:: defaultdict(default_factory=None, /, [...])
 
-    Returns a new dictionary-like object.  :class:`defaultdict` is a subclass of the
+    Return a new dictionary-like object.  :class:`defaultdict` is a subclass of the
     built-in :class:`dict` class.  It overrides one method and adds one writable
     instance variable.  The remaining functionality is the same as for the
     :class:`dict` class and is not documented here.
diff --git a/Misc/NEWS.d/next/Documentation/2020-08-24-13-35-04.bpo-41621.nqaw9G.rst b/Misc/NEWS.d/next/Documentation/2020-08-24-13-35-04.bpo-41621.nqaw9G.rst
new file mode 100644 (file)
index 0000000..bd193d9
--- /dev/null
@@ -0,0 +1 @@
+Document that :class:`collections.defaultdict` parameter ``default_factory`` defaults to None and is positional-only.
index 9c8701af904ab98aca875b6cf20ee938b98d32cf..eff03c789ede6189a2e8ca273f3ef173c9446eca 100644 (file)
@@ -2236,7 +2236,7 @@ defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
 }
 
 PyDoc_STRVAR(defdict_doc,
-"defaultdict(default_factory[, ...]) --> dict with default factory\n\
+"defaultdict(default_factory=None, /, [...]) --> 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\