[Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex,1.22,1.23

Fred L. Drake python-dev@python.org
Wed, 5 Jul 2000 21:45:17 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5865/lib

Modified Files:
	libxmllib.tex 
Log Message:

Sjoerd Mullender <sjoerd@oratrix.nl>:
Updates for recent changes in xmllib.


Index: libxmllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libxmllib.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** libxmllib.tex	2000/04/03 20:13:54	1.22
--- libxmllib.tex	2000/07/06 04:45:14	1.23
***************
*** 21,25 ****
  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).
  \var{accept_unquoted_attributes} (accept certain attribute values
  without requiring quotes), \var{accept_missing_endtag_name} (accept
--- 21,26 ----
  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) 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
***************
*** 28,32 ****
  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).}
  \end{classdesc}
  
--- 29,34 ----
  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), \var{translate_attribute_references} (don't
! attempt to translate character and entity references in attribute values).}
  \end{classdesc}