diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-11 14:36:19 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-11 14:36:19 (GMT) |
commit | 3e8c189faae661d44c61839986614fce595fc404 (patch) | |
tree | c9c60cc605a3f23a4af6cba9f2e40fb96ad9dc28 /Lib/xml/etree/ElementInclude.py | |
parent | 4478662f8398b2f82d6afab80afb6d5f99b01187 (diff) | |
download | cpython-3e8c189faae661d44c61839986614fce595fc404.zip cpython-3e8c189faae661d44c61839986614fce595fc404.tar.gz cpython-3e8c189faae661d44c61839986614fce595fc404.tar.bz2 |
Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too.
Diffstat (limited to 'Lib/xml/etree/ElementInclude.py')
-rw-r--r-- | Lib/xml/etree/ElementInclude.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/xml/etree/ElementInclude.py b/Lib/xml/etree/ElementInclude.py index 974cc21..dde0a41 100644 --- a/Lib/xml/etree/ElementInclude.py +++ b/Lib/xml/etree/ElementInclude.py @@ -1,6 +1,6 @@ # # ElementTree -# $Id: ElementInclude.py 1862 2004-06-18 07:31:02Z Fredrik $ +# $Id: ElementInclude.py 3375 2008-02-13 08:05:08Z fredrik $ # # limited xinclude support for element trees # @@ -16,7 +16,7 @@ # -------------------------------------------------------------------- # The ElementTree toolkit is # -# Copyright (c) 1999-2004 by Fredrik Lundh +# Copyright (c) 1999-2008 by Fredrik Lundh # # By obtaining, using, and/or copying this software and/or its # associated documentation, you agree that you have read, understood, @@ -42,14 +42,14 @@ # -------------------------------------------------------------------- # Licensed to PSF under a Contributor Agreement. -# See http://www.python.org/2.4/license for licensing details. +# See http://www.python.org/psf/license for licensing details. ## # Limited XInclude support for the ElementTree package. ## import copy -import ElementTree +from . import ElementTree XINCLUDE = "{http://www.w3.org/2001/XInclude}" |