diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-05-09 08:05:43 +0200 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-05-09 08:05:43 +0200 |
commit | 2f48d892d4036b500f5b79d152b3166b4d205dc9 (patch) | |
tree | 84b7b98bf34da03b275e04726884c27ec33c917b /Doc/library/xml.dom.rst | |
parent | 8269a44d5095cbd0c351aedc41272e9a6d91c269 (diff) | |
download | cpython-git-2f48d892d4036b500f5b79d152b3166b4d205dc9.tar.gz |
Stop trying to use _xmlplus in the xml module. Closes #11164.
Patch by Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Doc/library/xml.dom.rst')
-rw-r--r-- | Doc/library/xml.dom.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst index 45d30d6729..a3414d749f 100644 --- a/Doc/library/xml.dom.rst +++ b/Doc/library/xml.dom.rst @@ -30,13 +30,6 @@ The Document Object Model is being defined by the W3C in stages, or "levels" in their terminology. The Python mapping of the API is substantially based on the DOM Level 2 recommendation. -.. XXX PyXML is dead... -.. The mapping of the Level 3 specification, currently - only available in draft form, is being developed by the `Python XML Special - Interest Group <http://www.python.org/sigs/xml-sig/>`_ as part of the `PyXML - package <http://pyxml.sourceforge.net/>`_. Refer to the documentation bundled - with that package for information on the current state of DOM Level 3 support. - .. What if your needs are somewhere between SAX and the DOM? Perhaps you cannot afford to load the entire tree in memory but you find the SAX model somewhat cumbersome and low-level. There is also a module |