diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-06 04:45:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-06 04:45:14 (GMT) |
commit | 011028cf74b8a5efb8b03fb596af4552f71e423e (patch) | |
tree | dbc1ad5697b9dfbc7e1ab65f056e4a200af548b8 /Doc/lib | |
parent | d14423abe281667fadf8fb0645f10e50805ac10b (diff) | |
download | cpython-011028cf74b8a5efb8b03fb596af4552f71e423e.zip cpython-011028cf74b8a5efb8b03fb596af4552f71e423e.tar.gz cpython-011028cf74b8a5efb8b03fb596af4552f71e423e.tar.bz2 |
Sjoerd Mullender <sjoerd@oratrix.nl>:
Updates for recent changes in xmllib.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libxmllib.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/lib/libxmllib.tex b/Doc/lib/libxmllib.tex index afda815..5d67fad 100644 --- a/Doc/lib/libxmllib.tex +++ b/Doc/lib/libxmllib.tex @@ -20,14 +20,16 @@ The \class{XMLParser} class must be instantiated without arguments.\footnote{Actually, a number of keyword arguments are recognized which influence the parser to accept certain non-standard constructs. The following keyword arguments are currently -recognized. The defaults for all of these is \code{0} (false). +recognized. The defaults for all of these is \code{0} (false) except +for the last one for which the default is \code{1} (true). \var{accept_unquoted_attributes} (accept certain attribute values without requiring quotes), \var{accept_missing_endtag_name} (accept end tags that look like \code{</>}), \var{map_case} (map upper case to lower case in tags and attributes), \var{accept_utf8} (allow UTF-8 characters in input; this is required according to the XML standard, but Python does not as yet deal properly with these characters, so -this is not the default).} +this is not the default), \var{translate_attribute_references} (don't +attempt to translate character and entity references in attribute values).} \end{classdesc} This class provides the following interface methods and instance variables: |