Skip to content

Commit ef0ca15

Browse files
committed
Update LICENSE
1 parent 4b37399 commit ef0ca15

File tree

1 file changed

+287
-21
lines changed

1 file changed

+287
-21
lines changed

LICENSE

Lines changed: 287 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,287 @@
1-
The MIT License (MIT)
2-
3-
Copyright (c) pdbp
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
pdbp - Adapted from the CPython 3.11 pdb.py code.
2+
Copyright (c) 2001-2023 Python Software Foundation; All Rights Reserved.
3+
4+
5+
Key changes: pdb becomes a multi-line debugger with syntax-highlighting.
6+
(To replace "pdb", add "import pdbp" to an "__init__.py" file.)
7+
8+
9+
A. HISTORY OF THE SOFTWARE
10+
==========================
11+
12+
Python was created in the early 1990s by Guido van Rossum at Stichting
13+
Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands
14+
as a successor of a language called ABC. Guido remains Python's
15+
principal author, although it includes many contributions from others.
16+
17+
In 1995, Guido continued his work on Python at the Corporation for
18+
National Research Initiatives (CNRI, see https://www.cnri.reston.va.us)
19+
in Reston, Virginia where he released several versions of the
20+
software.
21+
22+
In May 2000, Guido and the Python core development team moved to
23+
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
24+
year, the PythonLabs team moved to Digital Creations, which became
25+
Zope Corporation. In 2001, the Python Software Foundation (PSF, see
26+
https://www.python.org/psf/) was formed, a non-profit organization
27+
created specifically to own Python-related Intellectual Property.
28+
Zope Corporation was a sponsoring member of the PSF.
29+
30+
All Python releases are Open Source (see https://opensource.org for
31+
the Open Source Definition). Historically, most, but not all, Python
32+
releases have also been GPL-compatible; the table below summarizes
33+
the various releases.
34+
35+
Release Derived Year Owner GPL-
36+
from compatible? (1)
37+
38+
0.9.0 thru 1.2 1991-1995 CWI yes
39+
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
40+
1.6 1.5.2 2000 CNRI no
41+
2.0 1.6 2000 BeOpen.com no
42+
1.6.1 1.6 2001 CNRI yes (2)
43+
2.1 2.0+1.6.1 2001 PSF no
44+
2.0.1 2.0+1.6.1 2001 PSF yes
45+
2.1.1 2.1+2.0.1 2001 PSF yes
46+
2.1.2 2.1.1 2002 PSF yes
47+
2.1.3 2.1.2 2002 PSF yes
48+
2.2 and above 2.1.1 2001-now PSF yes
49+
50+
Footnotes:
51+
52+
(1) GPL-compatible doesn't mean that we're distributing Python under
53+
the GPL. All Python licenses, unlike the GPL, let you distribute
54+
a modified version without making your changes open source. The
55+
GPL-compatible licenses make it possible to combine Python with
56+
other software that is released under the GPL; the others don't.
57+
58+
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
59+
because its license has a choice of law clause. According to
60+
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
61+
is "not incompatible" with the GPL.
62+
63+
Thanks to the many outside volunteers who have worked under Guido's
64+
direction to make these releases possible.
65+
66+
67+
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
68+
===============================================================
69+
70+
Python software and documentation are licensed under the
71+
Python Software Foundation License Version 2.
72+
73+
Starting with Python 3.8.6, examples, recipes, and other code in
74+
the documentation are dual licensed under the PSF License Version 2
75+
and the Zero-Clause BSD license.
76+
77+
Some software incorporated into Python is under different licenses.
78+
The licenses are listed with code falling under that license.
79+
80+
81+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
82+
--------------------------------------------
83+
84+
1. This LICENSE AGREEMENT is between the Python Software Foundation
85+
("PSF"), and the Individual or Organization ("Licensee") accessing and
86+
otherwise using this software ("Python") in source or binary form and
87+
its associated documentation.
88+
89+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
90+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
91+
analyze, test, perform and/or display publicly, prepare derivative works,
92+
distribute, and otherwise use Python alone or in any derivative version,
93+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
94+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
95+
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Python Software Foundation;
96+
All Rights Reserved" are retained in Python alone or in any derivative version
97+
prepared by Licensee.
98+
99+
3. In the event Licensee prepares a derivative work that is based on
100+
or incorporates Python or any part thereof, and wants to make
101+
the derivative work available to others as provided herein, then
102+
Licensee hereby agrees to include in any such work a brief summary of
103+
the changes made to Python.
104+
105+
4. PSF is making Python available to Licensee on an "AS IS"
106+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
107+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
108+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
109+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
110+
INFRINGE ANY THIRD PARTY RIGHTS.
111+
112+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
113+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
114+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
115+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
116+
117+
6. This License Agreement will automatically terminate upon a material
118+
breach of its terms and conditions.
119+
120+
7. Nothing in this License Agreement shall be deemed to create any
121+
relationship of agency, partnership, or joint venture between PSF and
122+
Licensee. This License Agreement does not grant permission to use PSF
123+
trademarks or trade name in a trademark sense to endorse or promote
124+
products or services of Licensee, or any third party.
125+
126+
8. By copying, installing or otherwise using Python, Licensee
127+
agrees to be bound by the terms and conditions of this License
128+
Agreement.
129+
130+
131+
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
132+
-------------------------------------------
133+
134+
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
135+
136+
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
137+
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
138+
Individual or Organization ("Licensee") accessing and otherwise using
139+
this software in source or binary form and its associated
140+
documentation ("the Software").
141+
142+
2. Subject to the terms and conditions of this BeOpen Python License
143+
Agreement, BeOpen hereby grants Licensee a non-exclusive,
144+
royalty-free, world-wide license to reproduce, analyze, test, perform
145+
and/or display publicly, prepare derivative works, distribute, and
146+
otherwise use the Software alone or in any derivative version,
147+
provided, however, that the BeOpen Python License is retained in the
148+
Software, alone or in any derivative version prepared by Licensee.
149+
150+
3. BeOpen is making the Software available to Licensee on an "AS IS"
151+
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
152+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
153+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
154+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
155+
INFRINGE ANY THIRD PARTY RIGHTS.
156+
157+
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
158+
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
159+
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
160+
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
161+
162+
5. This License Agreement will automatically terminate upon a material
163+
breach of its terms and conditions.
164+
165+
6. This License Agreement shall be governed by and interpreted in all
166+
respects by the law of the State of California, excluding conflict of
167+
law provisions. Nothing in this License Agreement shall be deemed to
168+
create any relationship of agency, partnership, or joint venture
169+
between BeOpen and Licensee. This License Agreement does not grant
170+
permission to use BeOpen trademarks or trade names in a trademark
171+
sense to endorse or promote products or services of Licensee, or any
172+
third party. As an exception, the "BeOpen Python" logos available at
173+
http://www.pythonlabs.com/logos.html may be used according to the
174+
permissions granted on that web page.
175+
176+
7. By copying, installing or otherwise using the software, Licensee
177+
agrees to be bound by the terms and conditions of this License
178+
Agreement.
179+
180+
181+
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
182+
---------------------------------------
183+
184+
1. This LICENSE AGREEMENT is between the Corporation for National
185+
Research Initiatives, having an office at 1895 Preston White Drive,
186+
Reston, VA 20191 ("CNRI"), and the Individual or Organization
187+
("Licensee") accessing and otherwise using Python 1.6.1 software in
188+
source or binary form and its associated documentation.
189+
190+
2. Subject to the terms and conditions of this License Agreement, CNRI
191+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
192+
license to reproduce, analyze, test, perform and/or display publicly,
193+
prepare derivative works, distribute, and otherwise use Python 1.6.1
194+
alone or in any derivative version, provided, however, that CNRI's
195+
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
196+
1995-2001 Corporation for National Research Initiatives; All Rights
197+
Reserved" are retained in Python 1.6.1 alone or in any derivative
198+
version prepared by Licensee. Alternately, in lieu of CNRI's License
199+
Agreement, Licensee may substitute the following text (omitting the
200+
quotes): "Python 1.6.1 is made available subject to the terms and
201+
conditions in CNRI's License Agreement. This Agreement together with
202+
Python 1.6.1 may be located on the internet using the following
203+
unique, persistent identifier (known as a handle): 1895.22/1013. This
204+
Agreement may also be obtained from a proxy server on the internet
205+
using the following URL: http://hdl.handle.net/1895.22/1013".
206+
207+
3. In the event Licensee prepares a derivative work that is based on
208+
or incorporates Python 1.6.1 or any part thereof, and wants to make
209+
the derivative work available to others as provided herein, then
210+
Licensee hereby agrees to include in any such work a brief summary of
211+
the changes made to Python 1.6.1.
212+
213+
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
214+
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
215+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
216+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
217+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
218+
INFRINGE ANY THIRD PARTY RIGHTS.
219+
220+
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
221+
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
222+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
223+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
224+
225+
6. This License Agreement will automatically terminate upon a material
226+
breach of its terms and conditions.
227+
228+
7. This License Agreement shall be governed by the federal
229+
intellectual property law of the United States, including without
230+
limitation the federal copyright law, and, to the extent such
231+
U.S. federal law does not apply, by the law of the Commonwealth of
232+
Virginia, excluding Virginia's conflict of law provisions.
233+
Notwithstanding the foregoing, with regard to derivative works based
234+
on Python 1.6.1 that incorporate non-separable material that was
235+
previously distributed under the GNU General Public License (GPL), the
236+
law of the Commonwealth of Virginia shall govern this License
237+
Agreement only as to issues arising under or with respect to
238+
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
239+
License Agreement shall be deemed to create any relationship of
240+
agency, partnership, or joint venture between CNRI and Licensee. This
241+
License Agreement does not grant permission to use CNRI trademarks or
242+
trade name in a trademark sense to endorse or promote products or
243+
services of Licensee, or any third party.
244+
245+
8. By clicking on the "ACCEPT" button where indicated, or by copying,
246+
installing or otherwise using Python 1.6.1, Licensee agrees to be
247+
bound by the terms and conditions of this License Agreement.
248+
249+
ACCEPT
250+
251+
252+
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
253+
--------------------------------------------------
254+
255+
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
256+
The Netherlands. All rights reserved.
257+
258+
Permission to use, copy, modify, and distribute this software and its
259+
documentation for any purpose and without fee is hereby granted,
260+
provided that the above copyright notice appear in all copies and that
261+
both that copyright notice and this permission notice appear in
262+
supporting documentation, and that the name of Stichting Mathematisch
263+
Centrum or CWI not be used in advertising or publicity pertaining to
264+
distribution of the software without specific, written prior
265+
permission.
266+
267+
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
268+
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
269+
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
270+
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
271+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
272+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
273+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
274+
275+
ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
276+
----------------------------------------------------------------------
277+
278+
Permission to use, copy, modify, and/or distribute this software for any
279+
purpose with or without fee is hereby granted.
280+
281+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
282+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
283+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
284+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
285+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
286+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
287+
PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)