[Python-checkins] CVS: python/dist/src/Doc/lib libpyexpat.tex,1.3,1.4

A.M. Kuchling python-dev@python.org
Thu, 17 Aug 2000 16:15:24 -0700


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

Modified Files:
	libpyexpat.tex 
Log Message:
Document the returns_unicode attribute


Index: libpyexpat.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpyexpat.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** libpyexpat.tex	2000/07/11 16:30:30	1.3
--- libpyexpat.tex	2000/08/17 23:15:21	1.4
***************
*** 93,100 ****
  \end{methoddesc}
  
! \class{xmlparser} objects have the following attributes, containing 
! values relating to the most recent error encountered by an
! \class{xmlparser} object. These attributes will only have correct
! values once a call to \method{Parse()} or \method{ParseFile()}
  has raised a \exception{pyexpat.error} exception.
  
--- 93,107 ----
  \end{methoddesc}
  
! \class{xmlparser} objects have the following attributes.  
! 
! \begin{datadesc}{returns_unicode} 
! If this attribute is set to 1, the handler functions will be passed
! Unicode strings.  If \member{returns_unicode} is 0, 8-bit strings
! containing UTF-8 encoded data will be passed to the handlers.
! \end{datadesc} 
! 
! The following attributes contain values relating to the most recent
! error encountered by an \class{xmlparser} object, and will only have
! correct values once a call to \method{Parse()} or \method{ParseFile()}
  has raised a \exception{pyexpat.error} exception.