Michael Ekstrand wrote:

> Anyway, the more important question that came to mind: I see that 2.5
> will include the excellent ElementTree. Will cElementTree be included
> where available? or is it only the pure-Python version that  will be in
> the standard library?

they're both available, via the "xml.etree" namespace:

    >>> import xml.etree.ElementTree
    >>> import xml.etree.cElementTree

we've also modified things so that cElementTree uses the expat instance
provided by pyexpat (via runtime linking), rather than it's own copy.

</F>



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to