]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix reST markup in dataclasses.rst (GH-27843) (GH-27845)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 19 Aug 2021 20:49:15 +0000 (13:49 -0700)
committerGitHub <noreply@github.com>
Thu, 19 Aug 2021 20:49:15 +0000 (16:49 -0400)
The signature of field() had an extraneous colon at the end, causing it
to appear all bold and without the module name.
(cherry picked from commit d26dbba9297adb59bc49a6583c647804ef56fc58)

Co-authored-by: Jean-Abou-Samra <37271310+Jean-Abou-Samra@users.noreply.github.com>
Co-authored-by: Jean-Abou-Samra <37271310+Jean-Abou-Samra@users.noreply.github.com>
Doc/library/dataclasses.rst

index e203a1a2132df90e61a2f4e793951e63fb9dad80..5da05539c90b1ea65cbc5ea55981dc1af548a0d7 100644 (file)
@@ -205,7 +205,7 @@ Module contents
    follows a field with a default value.  This is true whether this
    occurs in a single class, or as a result of class inheritance.
 
-.. function:: field(*, default=MISSING, default_factory=MISSING, init=True, repr=True, hash=None, compare=True, metadata=None, kw_only=MISSING):
+.. function:: field(*, default=MISSING, default_factory=MISSING, init=True, repr=True, hash=None, compare=True, metadata=None, kw_only=MISSING)
 
    For common and simple use cases, no other functionality is
    required.  There are, however, some dataclass features that