summaryrefslogtreecommitdiffstats
path: root/Doc/libxmllib.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-03-17 06:33:25 (GMT)
committerFred Drake <fdrake@acm.org>1998-03-17 06:33:25 (GMT)
commitcce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch)
tree8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/libxmllib.tex
parentc9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff)
downloadcpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip
cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz
cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty macros.
Diffstat (limited to 'Doc/libxmllib.tex')
-rw-r--r--Doc/libxmllib.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libxmllib.tex b/Doc/libxmllib.tex
index ba9e006..efc7f00 100644
--- a/Doc/libxmllib.tex
+++ b/Doc/libxmllib.tex
@@ -78,7 +78,7 @@ The base implementation simply calls \var{method} with \var{attributes}
as the only argument.
\end{funcdesc}
-\begin{funcdesc}{handle_endtag}{tag\, method}
+\begin{funcdesc}{handle_endtag}{tag, method}
This method is called to handle endtags for which an
\code{end_\var{tag}()} method has been defined. The \var{tag}
argument is the name of the tag, and the
@@ -170,7 +170,7 @@ raise a \exception{RuntimeError} without first calling
\method{syntax_error()}.
\end{funcdesc}
-\begin{funcdesc}{unknown_starttag}{tag\, attributes}
+\begin{funcdesc}{unknown_starttag}{tag, attributes}
This method is called to process an unknown start tag. It is intended
to be overridden by a derived class; the base class implementation
does nothing.