From: Fred Drake Date: Thu, 6 May 2004 03:48:33 +0000 (+0000) Subject: fix documentation for ContentHandler.ignorableWhitespace() X-Git-Tag: v2.3.4c1~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dea43fa923fc4e938d21a94a0eba81c9c806c85;p=thirdparty%2FPython%2Fcpython.git fix documentation for ContentHandler.ignorableWhitespace() (closes SF bug #881707) --- diff --git a/Doc/lib/xmlsaxhandler.tex b/Doc/lib/xmlsaxhandler.tex index c5858fc27b3c..c523ddbb3e05 100644 --- a/Doc/lib/xmlsaxhandler.tex +++ b/Doc/lib/xmlsaxhandler.tex @@ -285,7 +285,7 @@ appropriate events in the input document: \var{length} parameters.} \end{methoddesc} -\begin{methoddesc}[ContentHandler]{ignorableWhitespace}{} +\begin{methoddesc}[ContentHandler]{ignorableWhitespace}{whitespace} Receive notification of ignorable whitespace in element content. Validating Parsers must use this method to report each chunk diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index 25d55c1df53e..f9e91b6d4704 100644 --- a/Lib/xml/sax/handler.py +++ b/Lib/xml/sax/handler.py @@ -177,10 +177,7 @@ class ContentHandler: chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity, so that the Locator provides useful - information. - - The application must not attempt to read from the array - outside of the specified range.""" + information.""" def processingInstruction(self, target, data): """Receive notification of a processing instruction.