]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.6] Fix typo in xml.dom.minidom documentation (GH-10956) (GH-10962)
authorMariatta <Mariatta@users.noreply.github.com>
Wed, 5 Dec 2018 23:53:21 +0000 (15:53 -0800)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 5 Dec 2018 23:53:21 +0000 (15:53 -0800)
Escape the \t and \n.
Follow up from https://github.com/python/cpython/pull/10814..
(cherry picked from commit 2d8f976cde4794d174b44ff7d5fd970aa89c65e8)

Co-authored-by: E Kawashima <e-kwsm@users.noreply.github.com>
Doc/library/xml.dom.minidom.rst

index d5d7b20efe60b65512d5d68e8bfd5f2479946524..15b1cb0cbf78f0c639d621043c34c6dc0af402c0 100644 (file)
@@ -156,7 +156,7 @@ module documentation.  This section lists the differences between the API and
    encoding. Encoding this string in an encoding other than UTF-8 is
    likely incorrect, since UTF-8 is the default encoding of XML.
 
-.. 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