From: E Kawashima Date: Wed, 5 Dec 2018 22:15:42 +0000 (+0900) Subject: Fix typo in xml.dom.minidom documentation (GH-10956) X-Git-Tag: v3.8.0a1~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d8f976cde4794d174b44ff7d5fd970aa89c65e8;p=python Fix typo in xml.dom.minidom documentation (GH-10956) Escape the \t and \n. Follow up from https://github.com/python/cpython/pull/10814. --- diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index 42340802f1..fb6fe6e661 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -163,7 +163,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) Return a pretty-printed version of the document. *indent* specifies the indentation string and defaults to a tabulator; *newl* specifies the string