blob: 27fd8f6d4e36029830517a8884fac7da56d25eb7 [file] [log] [blame]
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001# $Id: __init__.py 3375 2008-02-13 08:05:08Z fredrik $
Armin Rigo9ed73062005-12-14 18:10:45 +00002# elementtree package
3
4# --------------------------------------------------------------------
5# The ElementTree toolkit is
6#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00007# Copyright (c) 1999-2008 by Fredrik Lundh
Armin Rigo9ed73062005-12-14 18:10:45 +00008#
9# By obtaining, using, and/or copying this software and/or its
10# associated documentation, you agree that you have read, understood,
11# and will comply with the following terms and conditions:
12#
13# Permission to use, copy, modify, and distribute this software and
14# its associated documentation for any purpose and without fee is
15# hereby granted, provided that the above copyright notice appears in
16# all copies, and that both that copyright notice and this permission
17# notice appear in supporting documentation, and that the name of
18# Secret Labs AB or the author not be used in advertising or publicity
19# pertaining to distribution of the software without specific, written
20# prior permission.
21#
22# SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
23# TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANT-
24# ABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR
25# BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
26# DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
27# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
28# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
29# OF THIS SOFTWARE.
30# --------------------------------------------------------------------
Fredrik Lundh63168a52005-12-14 22:29:34 +000031
32# Licensed to PSF under a Contributor Agreement.
Florent Xiclunaf15351d2010-03-13 23:24:31 +000033# See http://www.python.org/psf/license for licensing details.