summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-12 07:18:15 (GMT)
committerGitHub <noreply@github.com>2021-10-12 07:18:15 (GMT)
commit23528905d48ddfe74a75af2152e96c04b77bf314 (patch)
tree8cfc0c151bb48b570cf97f39f68bb9f080476e13
parent320084fe7de90319928d8f3e597d5bca04db13f3 (diff)
downloadcpython-23528905d48ddfe74a75af2152e96c04b77bf314.zip
cpython-23528905d48ddfe74a75af2152e96c04b77bf314.tar.gz
cpython-23528905d48ddfe74a75af2152e96c04b77bf314.tar.bz2
bpo-42253: Update xml.dom.minidom.rst (GH-23126) (GH-28875)
Document that the "standalone" parameter was added in Python 3.9. Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> (cherry picked from commit c7e81fcf9548ab6a0a4828d6f2db9ece9d204826) Co-authored-by: Jens Diemer <github.com@jensdiemer.de>
-rw-r--r--Doc/library/xml.dom.minidom.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst
index d3a5f87..20984b9 100644
--- a/Doc/library/xml.dom.minidom.rst
+++ b/Doc/library/xml.dom.minidom.rst
@@ -156,6 +156,9 @@ module documentation. This section lists the differences between the API and
The :meth:`writexml` method now preserves the attribute order specified
by the user.
+ .. versionchanged:: 3.9
+ The *standalone* parameter was added.
+
.. method:: Node.toxml(encoding=None, standalone=None)
Return a string or byte string containing the XML represented by
@@ -174,6 +177,9 @@ module documentation. This section lists the differences between the API and
The :meth:`toxml` method now preserves the attribute order specified
by the user.
+ .. versionchanged:: 3.9
+ The *standalone* parameter was added.
+
.. method:: Node.toprettyxml(indent="\\t", newl="\\n", encoding=None, \
standalone=None)
@@ -190,6 +196,8 @@ module documentation. This section lists the differences between the API and
The :meth:`toprettyxml` method now preserves the attribute order specified
by the user.
+ .. versionchanged:: 3.9
+ The *standalone* parameter was added.
.. _dom-example: