On 5 Apr., 23:08, Michael Torrie <[EMAIL PROTECTED]> wrote: > You need to either fix all these imports in these other modules (that > are probably in the site_packages folder), or modify the python import > path so that it can find ElementTree directly.
I'd prefer to set an alias in the module cache: >>> import sys >>> import xml.etree >>> sys.modules["elementree"] = xml.etree >>> from elementree import ElementTree >>> -- http://mail.python.org/mailman/listinfo/python-list