diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-12-22 16:02:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 16:02:52 (GMT) |
commit | 60eccd095624f39195cc5ae0b49a59022bbbb028 (patch) | |
tree | 2d3cbda7a3207e8e48f948c6dd8f3e2c6578b876 /Doc | |
parent | b3c77ecbbe0ad3e3cc6dbd885792203e9e6ec858 (diff) | |
download | cpython-60eccd095624f39195cc5ae0b49a59022bbbb028.zip cpython-60eccd095624f39195cc5ae0b49a59022bbbb028.tar.gz cpython-60eccd095624f39195cc5ae0b49a59022bbbb028.tar.bz2 |
[doc] Fix missing commas in signatures (#23693)
* Fix star in signatures
* Fix comma in signatures
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 4 | ||||
-rw-r--r-- | Doc/library/email.contentmanager.rst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 508bc88..dae0dd7 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -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 diff --git a/Doc/library/email.contentmanager.rst b/Doc/library/email.contentmanager.rst index e09c7c0..918fc55 100644 --- a/Doc/library/email.contentmanager.rst +++ b/Doc/library/email.contentmanager.rst @@ -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) |