[Python-checkins] commit of r41354 - in python: branches/release24-maint/Doc/lib trunk/Doc/lib

hyeshik.chang@python.org hyeshik.chang at python.org
Sun Oct 30 04:05:28 CET 2005


Author: hyeshik.chang
Date: Sun Oct 30 04:05:27 2005
New Revision: 41354

Modified:
   python/branches/release24-maint/Doc/lib/xmldomminidom.tex
   python/trunk/Doc/lib/xmldomminidom.tex
Log:
SF Bug #1341934: Fix a representation of "\n" to use a proper tag.


Modified: python/branches/release24-maint/Doc/lib/xmldomminidom.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/xmldomminidom.tex	(original)
+++ python/branches/release24-maint/Doc/lib/xmldomminidom.tex	Sun Oct 30 04:05:27 2005
@@ -175,7 +175,7 @@
 \begin{methoddesc}[Node]{toprettyxml}{\optional{indent\optional{, newl}}}
 Return a pretty-printed version of the document. \var{indent} specifies
 the indentation string and defaults to a tabulator; \var{newl} specifies
-the string emitted at the end of each line and defaults to \\n.
+the string emitted at the end of each line and defaults to \code{\e n}.
 
 \versionadded{2.1}
 \versionchanged[the encoding argument; see \method{toxml()}]{2.3}

Modified: python/trunk/Doc/lib/xmldomminidom.tex
==============================================================================
--- python/trunk/Doc/lib/xmldomminidom.tex	(original)
+++ python/trunk/Doc/lib/xmldomminidom.tex	Sun Oct 30 04:05:27 2005
@@ -175,7 +175,7 @@
 \begin{methoddesc}[Node]{toprettyxml}{\optional{indent\optional{, newl}}}
 Return a pretty-printed version of the document. \var{indent} specifies
 the indentation string and defaults to a tabulator; \var{newl} specifies
-the string emitted at the end of each line and defaults to \\n.
+the string emitted at the end of each line and defaults to \code{\e n}.
 
 \versionadded{2.1}
 \versionchanged[the encoding argument; see \method{toxml()}]{2.3}


More information about the Python-checkins mailing list