]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[doc] Fix missing commas in signatures (#23693)
authorAndre Delfino <adelfino@gmail.com>
Tue, 22 Dec 2020 16:02:52 +0000 (13:02 -0300)
committerGitHub <noreply@github.com>
Tue, 22 Dec 2020 16:02:52 +0000 (11:02 -0500)
* Fix star in signatures

* Fix comma in signatures

Doc/library/datetime.rst
Doc/library/email.contentmanager.rst

index 508bc88e7f4b8a3ef76d14d7a24f1cc8e9f09cb8..dae0dd7aa55898d84c9a43f18f69411bba719948 100644 (file)
@@ -1219,7 +1219,7 @@ Instance methods:
 
 .. method:: datetime.replace(year=self.year, month=self.month, day=self.day, \
    hour=self.hour, minute=self.minute, second=self.second, microsecond=self.microsecond, \
-   tzinfo=self.tzinfo, * fold=0)
+   tzinfo=self.tzinfo, *, fold=0)
 
    Return a datetime with the same attributes, except for those attributes given
    new values by whichever keyword arguments are specified. Note that
@@ -1783,7 +1783,7 @@ Other constructor:
 Instance methods:
 
 .. method:: time.replace(hour=self.hour, minute=self.minute, second=self.second, \
-   microsecond=self.microsecond, tzinfo=self.tzinfo, * fold=0)
+   microsecond=self.microsecond, tzinfo=self.tzinfo, *, fold=0)
 
    Return a :class:`.time` with the same value, except for those attributes given
    new values by whichever keyword arguments are specified. Note that
index e09c7c0e402bbcbebc8c9c941ca889c8ca43416b..918fc55677e72390833e06c7b8c515305a9455c4 100644 (file)
@@ -116,7 +116,7 @@ Currently the email package provides only one concrete content manager,
       decoding the payload to unicode.  The default error handler is
       ``replace``.
 
-   .. method:: set_content(msg, <'str'>, subtype="plain", charset='utf-8' \
+   .. method:: set_content(msg, <'str'>, subtype="plain", charset='utf-8', \
                            cte=None, \
                            disposition=None, filename=None, cid=None, \
                            params=None, headers=None)