diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2005-12-14 22:29:34 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2005-12-14 22:29:34 (GMT) |
commit | 63168a52f41fb73a1c951e6655a8d15399123953 (patch) | |
tree | c8a113db9e643647c4cd026f1b699f2690427e41 /Lib | |
parent | 16fd9026d96c9821f535071df59ba8f62d706c68 (diff) | |
download | cpython-63168a52f41fb73a1c951e6655a8d15399123953.zip cpython-63168a52f41fb73a1c951e6655a8d15399123953.tar.gz cpython-63168a52f41fb73a1c951e6655a8d15399123953.tar.bz2 |
added PSF licensing blurbs to relevant files
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xmlcore/etree/ElementInclude.py | 3 | ||||
-rw-r--r-- | Lib/xmlcore/etree/ElementPath.py | 3 | ||||
-rw-r--r-- | Lib/xmlcore/etree/ElementTree.py | 3 | ||||
-rw-r--r-- | Lib/xmlcore/etree/__init__.py | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/Lib/xmlcore/etree/ElementInclude.py b/Lib/xmlcore/etree/ElementInclude.py index bac2f5e..479d754 100644 --- a/Lib/xmlcore/etree/ElementInclude.py +++ b/Lib/xmlcore/etree/ElementInclude.py @@ -41,6 +41,9 @@ # OF THIS SOFTWARE. # -------------------------------------------------------------------- +# Licensed to PSF under a Contributor Agreement. +# See http://www.python.org/2.4/license for licensing details. + ## # Limited XInclude support for the ElementTree package. ## diff --git a/Lib/xmlcore/etree/ElementPath.py b/Lib/xmlcore/etree/ElementPath.py index 558b560..4685d12 100644 --- a/Lib/xmlcore/etree/ElementPath.py +++ b/Lib/xmlcore/etree/ElementPath.py @@ -42,6 +42,9 @@ # OF THIS SOFTWARE. # -------------------------------------------------------------------- +# Licensed to PSF under a Contributor Agreement. +# See http://www.python.org/2.4/license for licensing details. + ## # Implementation module for XPath support. There's usually no reason # to import this module directly; the <b>ElementTree</b> does this for diff --git a/Lib/xmlcore/etree/ElementTree.py b/Lib/xmlcore/etree/ElementTree.py index 23c2058..b39760ea 100644 --- a/Lib/xmlcore/etree/ElementTree.py +++ b/Lib/xmlcore/etree/ElementTree.py @@ -67,6 +67,9 @@ # OF THIS SOFTWARE. # -------------------------------------------------------------------- +# Licensed to PSF under a Contributor Agreement. +# See http://www.python.org/2.4/license for licensing details. + __all__ = [ # public symbols "Comment", diff --git a/Lib/xmlcore/etree/__init__.py b/Lib/xmlcore/etree/__init__.py index cef1a6b..3dd2c92 100644 --- a/Lib/xmlcore/etree/__init__.py +++ b/Lib/xmlcore/etree/__init__.py @@ -28,3 +28,6 @@ # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE # OF THIS SOFTWARE. # -------------------------------------------------------------------- + +# Licensed to PSF under a Contributor Agreement. +# See http://www.python.org/2.4/license for licensing details. |