Skip to content

Commit d83347b

Browse files
author
Jeremy Paige
committed
Add ActiveState copyright to modified files
1 parent 8a32bf0 commit d83347b

11 files changed

+90
-0
lines changed

LICENSE

+48
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,54 @@ direction to make these releases possible.
5959
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
6060
===============================================================
6161

62+
ACTIVESTATE LICENSE AGREEMENT FOR PYTHON 2.7 GREATER THAN 2.7.18
63+
----------------------------------------------------------------
64+
65+
1. This LICENSE AGREEMENT is between ActiveState Software Inc. ("ActiveState"),
66+
and the Individual or Organization ("Licensee") accessing and otherwise using
67+
this software ("Python") in source or binary form and its associated
68+
documentation.
69+
70+
2. Subject to the terms and conditions of this License Agreement, ActiveState
71+
hereby grants Licensee a nonexclusive, royalty-free, world-wide license to
72+
reproduce, analyze, test, perform and/or display publicly, prepare derivative
73+
works, distribute, and otherwise use Python alone or in any derivative version,
74+
provided, however, that ActiveState's License Agreement and ActiveState's
75+
notice of copyright, i.e., "Copyright (c) 2020, 2021 ActiveState Software Inc.;
76+
All Rights Reserved" are retained in Python alone or in any derivative version
77+
prepared by Licensee.
78+
79+
3. In the event Licensee prepares a derivative work that is based on
80+
or incorporates Python or any part thereof, and wants to make
81+
the derivative work available to others as provided herein, then
82+
Licensee hereby agrees to include in any such work a brief summary of
83+
the changes made to Python.
84+
85+
4. ActiveState is making Python available to Licensee on an "AS IS"
86+
basis. ActiveState MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
87+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, ActiveState MAKES NO AND
88+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
89+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
90+
INFRINGE ANY THIRD PARTY RIGHTS.
91+
92+
5. ActiveState SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
93+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
94+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
95+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
96+
97+
6. This License Agreement will automatically terminate upon a material
98+
breach of its terms and conditions.
99+
100+
7. Nothing in this License Agreement shall be deemed to create any
101+
relationship of agency, partnership, or joint venture between ActiveState and
102+
Licensee. This License Agreement does not grant permission to use ActiveState
103+
trademarks or trade name in a trademark sense to endorse or promote
104+
products or services of Licensee, or any third party.
105+
106+
8. By copying, installing or otherwise using Python, Licensee
107+
agrees to be bound by the terms and conditions of this License
108+
Agreement.
109+
62110
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
63111
--------------------------------------------
64112

Lib/cgi.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#! /usr/local/bin/python
22

3+
# Copyright (C) 2021 ActiveState Software Inc.
4+
# cgi is licensed under the PSFLv2 License.
5+
# See the file LICENSE for details.
6+
37
# NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
48
# intentionally NOT "/usr/bin/env python". On many systems
59
# (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI

Lib/ctypes/test/test_parameters.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2021 ActiveState Software Inc.
2+
# test_parameters is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
import unittest, sys
26
from ctypes.test import need_symbol
37
import test.support

Lib/httplib.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2020 ActiveState Software Inc.
2+
# httplib is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
r"""HTTP/1.1 client library
26
37
<intro stuff goes here>

Lib/test/multibytecodec_support.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2020 ActiveState Software Inc.
2+
# multibytecodec_support is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
# multibytecodec_support.py
26
# Common Unittest Routines for CJK codecs
37
#

Lib/test/test_cgi.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2021 ActiveState Software Inc.
2+
# test_cgi is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
from io import BytesIO
26
from test.test_support import run_unittest, check_warnings
37
import cgi

Lib/test/test_tarfile.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2020 ActiveState Software Inc.
2+
# test_tarfile is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
import sys
26
import os
37
import shutil

Lib/test/test_urlparse.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2021 ActiveState Software Inc.
2+
# test_urlparse is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
from test import test_support
26
import sys
37
import unicodedata

Lib/urllib2.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2020 ActiveState Software Inc.
2+
# urllib2 is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
"""An extensible library for opening URLs using a variety of protocols
26
37
The simplest way to use this module is to call the urlopen function,

Lib/urlparse.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright (C) 2021 ActiveState Software Inc.
2+
# cgi is licensed under the PSFLv2 License.
3+
# See the file LICENSE for details.
4+
15
"""Parse (absolute and relative) URLs.
26
37
urlparse module is based upon the following RFC specifications.

Modules/_ctypes/callproc.c

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Copyright (C) 2021 ActiveState Software Inc.
3+
* callproc is licensed under the PSFLv2 License.
4+
* See the file LICENSE for details.
5+
*/
6+
17
/*****************************************************************
28
This file contains remnant Python 2.3 compatibility code that is no longer
39
strictly required.

0 commit comments

Comments
 (0)