diff --git a/xml.html b/xml.html index dd3f0e4..1f038f1 100755 --- a/xml.html +++ b/xml.html @@ -261,7 +261,7 @@ mark{display:inline} <Element {http://www.w3.org/2005/Atom}feed at cd1eb0>
xml.etree.ElementTree.
-parse() function, which can take a filename or a file-like object [FIXME xref]. This function parses the entire document at once. If memory is tight, there are ways to parse an XML document incrementally instead.
+parse() function, which can take a filename or a file-like object. This function parses the entire document at once. If memory is tight, there are ways to parse an XML document incrementally instead.
parse() function returns an object which represents the entire document. This is not the root element. To get a reference to the root element, call the getroot() method.
feed element in the http://www.w3.org/2005/Atom namespace. The string representation of this object reinforces an important point: an XML element is a combination of its namespace and its tag name (also called the local name). Every element in this document is in the Atom namespace, so the root element is represented as {http://www.w3.org/2005/Atom}feed.