diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-11-18 22:45:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 22:45:17 (GMT) |
commit | 829b177436e091025813d9be28c21ca46f246af7 (patch) | |
tree | b9443c902a9ecbd1d17e036faaa01bcfa57eba92 /Doc/library/xml.dom.minidom.rst | |
parent | 622307142130d36a30644233441333247838af38 (diff) | |
download | cpython-829b177436e091025813d9be28c21ca46f246af7.zip cpython-829b177436e091025813d9be28c21ca46f246af7.tar.gz cpython-829b177436e091025813d9be28c21ca46f246af7.tar.bz2 |
[doc] Fix smtplib and xml.dom.minidom mark-up (GH-22769)
Diffstat (limited to 'Doc/library/xml.dom.minidom.rst')
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index 2c78cd9..bf72c46 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 |