This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: xml.sax.handler.ContentHandler missing argument
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, jkew
Priority: normal Keywords:

Created on 2004-01-21 20:59 by jkew, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg19768 - (view) Author: James Kew (jkew) Date: 2004-01-21 20:59
On xml.sax.handler.ContentHandler (section 13.10.1 in 
the Library Reference), the ignorableWhitespace method 
is documented as taking no args.

The code, both in the stock xml package and in PyXML, 
has it taking one arg, whitespace.

FWIW also the docstring for the method says "the 
application must attempt to read from the array outside 
of the specified range" -- not meaningful in the current 
version of the interface, which only passes content 
rather than content, offset, length.
msg19769 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2004-05-06 03:49
Logged In: YES 
user_id=3066

Fixed in CVS for Python 2.3.4 and 2.4.

Doc/lib/xmlsaxhandler.tex  1.11, 1.10.12.1
Lib/xml/sax/handler.py  1.11, 1.10.10.1
History
Date User Action Args
2022-04-11 14:56:02adminsetgithub: 39847
2004-01-21 20:59:18jkewcreate