blob: 465f6910428820b2ffdf04126ae2c9d7f589a7c8 [file] [log] [blame]
Guido van Rossum3225c1f2001-03-22 15:41:06 +00001A. HISTORY OF THE SOFTWARE
2==========================
Guido van Rossumea70b492000-09-01 19:51:14 +00003
4Python was created in the early 1990s by Guido van Rossum at Stichting
5Mathematisch Centrum (CWI) in the Netherlands as a successor of a
6language called ABC. Guido is Python's principal author, although it
Guido van Rossum028d0692000-09-03 03:13:44 +00007includes many contributions from others. The last version released
8from CWI was Python 1.2. In 1995, Guido continued his work on Python
9at the Corporation for National Research Initiatives (CNRI) in Reston,
Guido van Rossumea70b492000-09-01 19:51:14 +000010Virginia where he released several versions of the software. Python
111.6 was the last of the versions released by CNRI. In 2000, Guido and
Guido van Rossum9d644792000-12-12 15:24:57 +000012the Python core development team moved to BeOpen.com to form the
Guido van Rossum3225c1f2001-03-22 15:41:06 +000013BeOpen PythonLabs team. Python 2.0 was the first and only release
14from BeOpen.com.
15
16Following the release of Python 1.6, and after Guido van Rossum left
17CNRI to work with commercial software developers, it became clear that
18the ability to use Python with software available under the GNU Public
19License (GPL) was very desirable. CNRI and the Free Software
Thomas Woutersf5db48e2001-03-22 16:03:53 +000020Foundation (FSF) interacted to develop enabling wording changes to the
Guido van Rossum3225c1f2001-03-22 15:41:06 +000021Python license. Python 1.6.1 is essentially the same as Python 1.6,
Guido van Rossum9ea60c52001-04-13 15:04:00 +000022with a few minor bug fixes, and with a different license that enables
23later versions to be GPL-compatible. Python 2.1 is a derivative work
24of Python 1.6.1, as well as of Python 2.0.
Guido van Rossumea70b492000-09-01 19:51:14 +000025
Guido van Rossum71500c82001-01-18 14:39:49 +000026After Python 2.0 was released by BeOpen.com, Guido van Rossum and the
Guido van Rossum3225c1f2001-03-22 15:41:06 +000027other PythonLabs developers joined Digital Creations. All
28intellectual property added from this point on, starting with Python
292.1 and its alpha and beta releases, is owned by the Python Software
30Foundation (PSF), a non-profit modeled after the Apache Software
31Foundation. See http://www.python.org/psf/ for more information about
32the PSF.
33
34Thanks to the many outside volunteers who have worked under Guido's
35direction to make these releases possible.
Guido van Rossumea70b492000-09-01 19:51:14 +000036
Guido van Rossumea70b492000-09-01 19:51:14 +000037
Guido van Rossumaa815df2001-04-10 03:37:31 +000038B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
39===============================================================
Guido van Rossum3225c1f2001-03-22 15:41:06 +000040
Guido van Rossum9ea60c52001-04-13 15:04:00 +000041PSF LICENSE AGREEMENT
42---------------------
43
441. This LICENSE AGREEMENT is between the Python Software Foundation
45("PSF"), and the Individual or Organization ("Licensee") accessing and
46otherwise using Python 2.1 software in source or binary form and its
47associated documentation.
48
492. Subject to the terms and conditions of this License Agreement, PSF
50hereby grants Licensee a nonexclusive, royalty-free, world-wide
51license to reproduce, analyze, test, perform and/or display publicly,
52prepare derivative works, distribute, and otherwise use Python 2.1
53alone or in any derivative version, provided, however, that PSF's
54License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
552001 Python Software Foundation; All Rights Reserved" are retained in
56Python 2.1 alone or in any derivative version prepared by Licensee.
57
583. In the event Licensee prepares a derivative work that is based on
59or incorporates Python 2.1 or any part thereof, and wants to make
60the derivative work available to others as provided herein, then
61Licensee hereby agrees to include in any such work a brief summary of
62the changes made to Python 2.1.
63
644. PSF is making Python 2.1 available to Licensee on an "AS IS"
65basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
66IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
67DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
68FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.1 WILL NOT
69INFRINGE ANY THIRD PARTY RIGHTS.
70
715. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
722.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
73A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.1,
74OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
75
766. This License Agreement will automatically terminate upon a material
77breach of its terms and conditions.
78
797. This License Agreement shall be governed by the federal
80intellectual property law of the United States, including without
81limitation the federal copyright law, and, to the extent such
82U.S. federal law does not apply, by the law of the Commonwealth of
83Virginia, excluding Virginia's conflict of law provisions.
84Notwithstanding the foregoing, with regard to derivative works based
85on Python 2.1 that incorporate non-separable material that was
86previously distributed under the GNU General Public License (GPL), the
87law of the Commonwealth of Virginia shall govern this License
88Agreement only as to issues arising under or with respect to
89Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
90License Agreement shall be deemed to create any relationship of
91agency, partnership, or joint venture between PSF and Licensee. This
92License Agreement does not grant permission to use PSF trademarks or
93trade name in a trademark sense to endorse or promote products or
94services of Licensee, or any third party.
95
Guido van Rossum859d9b52001-04-13 19:41:28 +0000968. By copying, installing or otherwise using Python 2.1, Licensee
97agrees to be bound by the terms and conditions of this License
98Agreement.
99
Guido van Rossum575d7f32001-04-13 15:04:31 +0000100
Guido van Rossum9ea60c52001-04-13 15:04:00 +0000101BEOPEN.COM TERMS AND CONDITIONS FOR PYTHON 2.0
102----------------------------------------------
Guido van Rossum028d0692000-09-03 03:13:44 +0000103
Guido van Rossum2e0d3312000-09-04 00:58:48 +0000104BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
Guido van Rossumea70b492000-09-01 19:51:14 +0000105
Guido van Rossum028d0692000-09-03 03:13:44 +00001061. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
107office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
Guido van Rossumea70b492000-09-01 19:51:14 +0000108Individual or Organization ("Licensee") accessing and otherwise using
109this software in source or binary form and its associated
110documentation ("the Software").
111
Guido van Rossum028d0692000-09-03 03:13:44 +00001122. Subject to the terms and conditions of this BeOpen Python License
113Agreement, BeOpen hereby grants Licensee a non-exclusive,
114royalty-free, world-wide license to reproduce, analyze, test, perform
115and/or display publicly, prepare derivative works, distribute, and
116otherwise use the Software alone or in any derivative version,
117provided, however, that the BeOpen Python License is retained in the
118Software, alone or in any derivative version prepared by Licensee.
Guido van Rossumea70b492000-09-01 19:51:14 +0000119
Guido van Rossum82271162000-09-05 03:05:07 +00001203. BeOpen is making the Software available to Licensee on an "AS IS"
Guido van Rossumea70b492000-09-01 19:51:14 +0000121basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
122IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
123DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
124FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
125INFRINGE ANY THIRD PARTY RIGHTS.
126
Guido van Rossum82271162000-09-05 03:05:07 +00001274. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
Guido van Rossumea70b492000-09-01 19:51:14 +0000128SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
129AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
130DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
131
Guido van Rossum82271162000-09-05 03:05:07 +00001325. This License Agreement will automatically terminate upon a material
Guido van Rossumea70b492000-09-01 19:51:14 +0000133breach of its terms and conditions.
134
Guido van Rossum82271162000-09-05 03:05:07 +00001356. This License Agreement shall be governed by and interpreted in all
Guido van Rossumea70b492000-09-01 19:51:14 +0000136respects by the law of the State of California, excluding conflict of
137law provisions. Nothing in this License Agreement shall be deemed to
138create any relationship of agency, partnership, or joint venture
139between BeOpen and Licensee. This License Agreement does not grant
Guido van Rossumac1c8182000-09-03 13:21:38 +0000140permission to use BeOpen trademarks or trade names in a trademark
141sense to endorse or promote products or services of Licensee, or any
142third party. As an exception, the "BeOpen Python" logos available at
Guido van Rossum028d0692000-09-03 03:13:44 +0000143http://www.pythonlabs.com/logos.html may be used according to the
144permissions granted on that web page.
Guido van Rossumea70b492000-09-01 19:51:14 +0000145
Guido van Rossum82271162000-09-05 03:05:07 +00001467. By copying, installing or otherwise using the software, Licensee
Guido van Rossumea70b492000-09-01 19:51:14 +0000147agrees to be bound by the terms and conditions of this License
148Agreement.
149
150
Guido van Rossum9ea60c52001-04-13 15:04:00 +0000151CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT
152-------------------------------------------------
Guido van Rossumea761c02000-10-10 14:49:44 +0000153
1541. This LICENSE AGREEMENT is between the Corporation for National
155Research Initiatives, having an office at 1895 Preston White Drive,
156Reston, VA 20191 ("CNRI"), and the Individual or Organization
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000157("Licensee") accessing and otherwise using Python 1.6.1 software in
158source or binary form and its associated documentation.
Guido van Rossumea761c02000-10-10 14:49:44 +0000159
1602. Subject to the terms and conditions of this License Agreement, CNRI
161hereby grants Licensee a nonexclusive, royalty-free, world-wide
162license to reproduce, analyze, test, perform and/or display publicly,
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000163prepare derivative works, distribute, and otherwise use Python 1.6.1
Guido van Rossumea761c02000-10-10 14:49:44 +0000164alone or in any derivative version, provided, however, that CNRI's
165License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
Guido van Rossum3225c1f2001-03-22 15:41:06 +00001661995-2001 Corporation for National Research Initiatives; All Rights
167Reserved" are retained in Python 1.6.1 alone or in any derivative
168version prepared by Licensee. Alternately, in lieu of CNRI's License
169Agreement, Licensee may substitute the following text (omitting the
170quotes): "Python 1.6.1 is made available subject to the terms and
171conditions in CNRI's License Agreement. This Agreement together with
172Python 1.6.1 may be located on the Internet using the following
173unique, persistent identifier (known as a handle): 1895.22/1013. This
174Agreement may also be obtained from a proxy server on the Internet
175using the following URL: http://hdl.handle.net/1895.22/1013".
Guido van Rossumea761c02000-10-10 14:49:44 +0000176
1773. In the event Licensee prepares a derivative work that is based on
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000178or incorporates Python 1.6.1 or any part thereof, and wants to make
179the derivative work available to others as provided herein, then
180Licensee hereby agrees to include in any such work a brief summary of
181the changes made to Python 1.6.1.
Guido van Rossumea761c02000-10-10 14:49:44 +0000182
Guido van Rossum3225c1f2001-03-22 15:41:06 +00001834. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
184basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
185IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
Guido van Rossumea761c02000-10-10 14:49:44 +0000186DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000187FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
Guido van Rossumea761c02000-10-10 14:49:44 +0000188INFRINGE ANY THIRD PARTY RIGHTS.
189
1905. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
Guido van Rossum3225c1f2001-03-22 15:41:06 +00001911.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
192A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
193OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
Guido van Rossumea761c02000-10-10 14:49:44 +0000194
1956. This License Agreement will automatically terminate upon a material
196breach of its terms and conditions.
197
Guido van Rossum3225c1f2001-03-22 15:41:06 +00001987. This License Agreement shall be governed by the federal
199intellectual property law of the United States, including without
200limitation the federal copyright law, and, to the extent such
201U.S. federal law does not apply, by the law of the Commonwealth of
202Virginia, excluding Virginia's conflict of law provisions.
203Notwithstanding the foregoing, with regard to derivative works based
204on Python 1.6.1 that incorporate non-separable material that was
205previously distributed under the GNU General Public License (GPL), the
206law of the Commonwealth of Virginia shall govern this License
207Agreement only as to issues arising under or with respect to
208Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
209License Agreement shall be deemed to create any relationship of
210agency, partnership, or joint venture between CNRI and Licensee. This
211License Agreement does not grant permission to use CNRI trademarks or
212trade name in a trademark sense to endorse or promote products or
213services of Licensee, or any third party.
Guido van Rossumea761c02000-10-10 14:49:44 +0000214
2158. By clicking on the "ACCEPT" button where indicated, or by copying,
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000216installing or otherwise using Python 1.6.1, Licensee agrees to be
217bound by the terms and conditions of this License Agreement.
Guido van Rossumea761c02000-10-10 14:49:44 +0000218
Guido van Rossum3225c1f2001-03-22 15:41:06 +0000219 ACCEPT
Guido van Rossumea70b492000-09-01 19:51:14 +0000220
221
Guido van Rossum9ea60c52001-04-13 15:04:00 +0000222CWI PERMISSIONS STATEMENT AND DISCLAIMER
223----------------------------------------
Guido van Rossumea70b492000-09-01 19:51:14 +0000224
225Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
226The Netherlands. All rights reserved.
227
228Permission to use, copy, modify, and distribute this software and its
229documentation for any purpose and without fee is hereby granted,
230provided that the above copyright notice appear in all copies and that
231both that copyright notice and this permission notice appear in
232supporting documentation, and that the name of Stichting Mathematisch
233Centrum or CWI not be used in advertising or publicity pertaining to
234distribution of the software without specific, written prior
235permission.
236
237STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
238THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
239FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
240FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
241WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
242ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
243OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.