https://github.com/python/cpython/commit/502191f73924c4c84eff8e043467e67d864d890a commit: 502191f73924c4c84eff8e043467e67d864d890a branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-08-31T13:00:27+03:00 summary:
[3.15] gh-57952: Clarify that xml.dom documents DOM interfaces (GH-156647) (#156651) Co-authored-by: Serhiy Storchaka <[email protected]> files: M Doc/library/xml.dom.rst diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst index 97573388458ac5..9617e6c7105b26 100644 --- a/Doc/library/xml.dom.rst +++ b/Doc/library/xml.dom.rst @@ -153,6 +153,11 @@ Objects in the DOM The definitive documentation for the DOM is the DOM specification from the W3C. +The names documented in this section are DOM interfaces. +With the exception of :class:`Node` and the exception classes, +they are not provided by the :mod:`!xml.dom` module itself, +but by concrete DOM implementations, such as :mod:`xml.dom.minidom`. + Note that DOM attributes may also be manipulated as nodes instead of as simple strings. It is fairly rare that you must do this, however, so this usage is not yet documented. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
