Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/library/xml.sax.utils.rst

    r2 r391  
    6060.. class:: XMLGenerator([out[, encoding]])
    6161
    62    This class implements the :class:`ContentHandler` interface by writing SAX
     62   This class implements the :class:`~xml.sax.handler.ContentHandler` interface
     63   by writing SAX
    6364   events back into an XML document. In other words, using an :class:`XMLGenerator`
    6465   as the content handler will reproduce the original document being parsed. *out*
     
    6970.. class:: XMLFilterBase(base)
    7071
    71    This class is designed to sit between an :class:`XMLReader` and the client
     72   This class is designed to sit between an
     73   :class:`~xml.sax.xmlreader.XMLReader` and the client
    7274   application's event handlers.  By default, it does nothing but pass requests up
    7375   to the reader and events on to the handlers unmodified, but subclasses can
     
    7880.. function:: prepare_input_source(source[, base])
    7981
    80    This function takes an input source and an optional base URL and returns a fully
    81    resolved :class:`InputSource` object ready for reading.  The input source can be
    82    given as a string, a file-like object, or an :class:`InputSource` object;
    83    parsers will use this function to implement the polymorphic *source* argument to
    84    their :meth:`parse` method.
     82   This function takes an input source and an optional base URL and returns a
     83   fully resolved :class:`~xml.sax.xmlreader.InputSource` object ready for
     84   reading.  The input source can be given as a string, a file-like object, or
     85   an :class:`~xml.sax.xmlreader.InputSource` object; parsers will use this
     86   function to implement the polymorphic *source* argument to their
     87   :meth:`parse` method.
    8588
Note: See TracChangeset for help on using the changeset viewer.