From c5c45ba30f913f7ce8e69b49663cfea2f5aae7c8 Mon Sep 17 00:00:00 2001 From: Alex Martelli Date: Mon, 21 Aug 2006 20:54:38 +0000 Subject: Use proper py3k syntax for relative import (from . import foo) --- Lib/xml/etree/ElementInclude.py | 2 +- Lib/xml/etree/ElementTree.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/xml/etree/ElementInclude.py b/Lib/xml/etree/ElementInclude.py index 974cc21..d7f85b3 100644 --- a/Lib/xml/etree/ElementInclude.py +++ b/Lib/xml/etree/ElementInclude.py @@ -49,7 +49,7 @@ ## import copy -import ElementTree +from . import ElementTree XINCLUDE = "{http://www.w3.org/2001/XInclude}" diff --git a/Lib/xml/etree/ElementTree.py b/Lib/xml/etree/ElementTree.py index 7dbc72e..deaed7d 100644 --- a/Lib/xml/etree/ElementTree.py +++ b/Lib/xml/etree/ElementTree.py @@ -133,9 +133,10 @@ class _SimpleElementPath: return result try: - import ElementPath + from . import ElementPath except ImportError: # FIXME: issue warning in this case? + # TODO: DEFINITELY issue warning here!!! ElementPath = _SimpleElementPath() # TODO: add support for custom namespace resolvers/default namespaces -- cgit v0.12