This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: document mistake xml.dom.minidom.Element
Type: Stage:
Components: Documentation Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, hsmtkk
Priority: normal Keywords:

Created on 2009-03-12 00:16 by hsmtkk, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg83482 - (view) Author: Kouki Hashimoto (hsmtkk) Date: 2009-03-12 00:16
I found mistake in python documentation about xml.dom.minidom.Element 
class.
http://docs.python.org/dev/py3k/library/xml.dom.html#module-xml.dom

I think it is NOT
Element.getElementsByTagNameNS(tagName)
It SHOULD be
Element.getElementsByTagNameNS(namespaceURI, tagName)
msg83645 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-15 21:48
Thanks, fixed in r70393.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49728
2009-03-15 21:48:11georg.brandlsetstatus: open -> closed

messages: + msg83645
resolution: fixed
2009-03-12 00:16:12hsmtkkcreate