__init__.py 1.6 KB

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