diff options
author | Georg Brandl <georg@python.org> | 2007-08-15 14:28:22 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-15 14:28:22 +0000 |
commit | e395d9483cba40d328a49a42c75b79e3ef1dd770 (patch) | |
tree | 3a26ee506c46066878a5705f213c08e17e6ce6a1 /Doc/library/xml.dom.pulldom.rst | |
parent | 4e5cab59a9f2efc1f3cece227b49f79c3c830bbd (diff) | |
download | cpython-e395d9483cba40d328a49a42c75b79e3ef1dd770.tar.gz |
Move the 3k reST doc tree in place.
Diffstat (limited to 'Doc/library/xml.dom.pulldom.rst')
-rw-r--r-- | Doc/library/xml.dom.pulldom.rst | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/Doc/library/xml.dom.pulldom.rst b/Doc/library/xml.dom.pulldom.rst new file mode 100644 index 0000000000..80a91b8ec7 --- /dev/null +++ b/Doc/library/xml.dom.pulldom.rst @@ -0,0 +1,69 @@ + +:mod:`xml.dom.pulldom` --- Support for building partial DOM trees +================================================================= + +.. module:: xml.dom.pulldom + :synopsis: Support for building partial DOM trees from SAX events. +.. moduleauthor:: Paul Prescod <paul@prescod.net> + + +.. versionadded:: 2.0 + +:mod:`xml.dom.pulldom` allows building only selected portions of a Document +Object Model representation of a document from SAX events. + + +.. class:: PullDOM([documentFactory]) + + :class:`xml.sax.handler.ContentHandler` implementation that ... + + +.. class:: DOMEventStream(stream, parser, bufsize) + + ... + + +.. class:: SAX2DOM([documentFactory]) + + :class:`xml.sax.handler.ContentHandler` implementation that ... + + +.. function:: parse(stream_or_string[, parser[, bufsize]]) + + ... + + +.. function:: parseString(string[, parser]) + + ... + + +.. data:: default_bufsize + + Default value for the *bufsize* parameter to :func:`parse`. + + .. versionchanged:: 2.1 + The value of this variable can be changed before calling :func:`parse` and the + new value will take effect. + + +.. _domeventstream-objects: + +DOMEventStream Objects +---------------------- + + +.. method:: DOMEventStream.getEvent() + + ... + + +.. method:: DOMEventStream.expandNode(node) + + ... + + +.. method:: DOMEventStream.reset() + + ... + |