[Python-checkins] CVS: python/dist/src/Doc/lib xmldom.tex,1.11,1.12

Fred L. Drake fdrake@users.sourceforge.net
Fri, 23 Feb 2001 11:15:58 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv12233/lib

Modified Files:
	xmldom.tex 
Log Message:

Minor adjustments, including markup corrections.


Index: xmldom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/xmldom.tex,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** xmldom.tex	2001/02/22 14:05:50	1.11
--- xmldom.tex	2001/02/23 19:15:56	1.12
***************
*** 91,98 ****
  
  \begin{funcdesc}{registerDOMImplementation}{name, factory}
! Register the \var{factory} function with the \var{name}. The factory
! function should return an object which implements the
! \code{DOMImplementation| interface. The factory function can either return
! the same object, or a new one (e.g. if that implementation supports
  some customization).
  \end{funcdesc}
--- 91,99 ----
  
  \begin{funcdesc}{registerDOMImplementation}{name, factory}
! Register the \var{factory} function with the name \var{name}.  The
! factory function should return an object which implements the
! \class{DOMImplementation} interface.  The factory function can return
! the same object every time, or a new one for each call, as appropriate
! for the specific implementation (e.g. if that implementation supports
  some customization).
  \end{funcdesc}
***************
*** 103,107 ****
  \code{None}. If it is not \code{None}, imports the corresponding module and
  returns a \class{DOMImplementation} object if the import succeeds.  If
! no name is given, and if the environment variable \code{PYTHON_DOM} is
  set, this variable is used to find the implementation.
  
--- 104,108 ----
  \code{None}. If it is not \code{None}, imports the corresponding module and
  returns a \class{DOMImplementation} object if the import succeeds.  If
! no name is given, and if the environment variable \envvar{PYTHON_DOM} is
  set, this variable is used to find the implementation.