[Python-checkins] commit of r41687 - in python/trunk: Lib/xmlcore/etree/ElementInclude.py Lib/xmlcore/etree/ElementPath.py Lib/xmlcore/etree/ElementTree.py Lib/xmlcore/etree/__init__.py PC/_subprocess.c

fredrik.lundh python-checkins at python.org
Wed Dec 14 23:29:35 CET 2005


Author: fredrik.lundh
Date: Wed Dec 14 23:29:34 2005
New Revision: 41687

Modified:
   python/trunk/Lib/xmlcore/etree/ElementInclude.py
   python/trunk/Lib/xmlcore/etree/ElementPath.py
   python/trunk/Lib/xmlcore/etree/ElementTree.py
   python/trunk/Lib/xmlcore/etree/__init__.py
   python/trunk/PC/_subprocess.c
Log:
added PSF licensing blurbs to relevant files



Modified: python/trunk/Lib/xmlcore/etree/ElementInclude.py
==============================================================================
--- python/trunk/Lib/xmlcore/etree/ElementInclude.py	(original)
+++ python/trunk/Lib/xmlcore/etree/ElementInclude.py	Wed Dec 14 23:29:34 2005
@@ -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.
 ##

Modified: python/trunk/Lib/xmlcore/etree/ElementPath.py
==============================================================================
--- python/trunk/Lib/xmlcore/etree/ElementPath.py	(original)
+++ python/trunk/Lib/xmlcore/etree/ElementPath.py	Wed Dec 14 23:29:34 2005
@@ -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

Modified: python/trunk/Lib/xmlcore/etree/ElementTree.py
==============================================================================
--- python/trunk/Lib/xmlcore/etree/ElementTree.py	(original)
+++ python/trunk/Lib/xmlcore/etree/ElementTree.py	Wed Dec 14 23:29:34 2005
@@ -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",

Modified: python/trunk/Lib/xmlcore/etree/__init__.py
==============================================================================
--- python/trunk/Lib/xmlcore/etree/__init__.py	(original)
+++ python/trunk/Lib/xmlcore/etree/__init__.py	Wed Dec 14 23:29:34 2005
@@ -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.

Modified: python/trunk/PC/_subprocess.c
==============================================================================
--- python/trunk/PC/_subprocess.c	(original)
+++ python/trunk/PC/_subprocess.c	Wed Dec 14 23:29:34 2005
@@ -32,6 +32,9 @@
  *
  */
 
+/* Licensed to PSF under a Contributor Agreement. */
+/* See http://www.python.org/2.4/license for licensing details. */
+
 /* TODO: handle unicode command lines? */
 /* TODO: handle unicode environment? */
 


More information about the Python-checkins mailing list