[Python-checkins] [doc] Fix smtplib and xml.dom.minidom mark-up (GH-22769)
JulienPalard
webhook-mailer at python.org
Wed Nov 18 17:45:27 EST 2020
https://github.com/python/cpython/commit/829b177436e091025813d9be28c21ca46f246af7
commit: 829b177436e091025813d9be28c21ca46f246af7
branch: master
author: Andre Delfino <adelfino at gmail.com>
committer: JulienPalard <julien at palard.fr>
date: 2020年11月18日T23:45:17+01:00
summary:
[doc] Fix smtplib and xml.dom.minidom mark-up (GH-22769)
files:
M Doc/library/smtplib.rst
M Doc/library/xml.dom.minidom.rst
diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst
index b3cc60357f554..8f5ca0ac30022 100644
--- a/Doc/library/smtplib.rst
+++ b/Doc/library/smtplib.rst
@@ -115,7 +115,7 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
If the *timeout* parameter is set to be zero, it will raise a
:class:`ValueError` to prevent the creation of a non-blocking socket
-.. class:: LMTP(host='', port=LMTP_PORT, local_hostname=None,
+.. class:: LMTP(host='', port=LMTP_PORT, local_hostname=None, \
source_address=None[, timeout])
The LMTP protocol, which is very similar to ESMTP, is heavily based on the
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst
index 2c78cd939243a..bf72c46561b7c 100644
--- a/Doc/library/xml.dom.minidom.rst
+++ b/Doc/library/xml.dom.minidom.rst
@@ -132,7 +132,7 @@ module documentation. This section lists the differences between the API and
... # Work with dom.
-.. method:: Node.writexml(writer, indent="", addindent="", newl="",
+.. method:: Node.writexml(writer, indent="", addindent="", newl="", \
encoding=None, standalone=None)
Write XML to the writer object. The writer receives texts but not bytes as input,
@@ -174,7 +174,7 @@ module documentation. This section lists the differences between the API and
The :meth:`toxml` method now preserves the attribute order specified
by the user.
-.. method:: Node.toprettyxml(indent="\\t", newl="\\n", encoding=None,
+.. method:: Node.toprettyxml(indent="\\t", newl="\\n", encoding=None, \
standalone=None)
Return a pretty-printed version of the document. *indent* specifies the
More information about the Python-checkins
mailing list