@@ -278,3 +278,62 @@ \section{Terms and conditions for accessing or otherwise using Python}
278278WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
279279ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
280280OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
281+
282+
283+ \section {Licenses and Acknowledgements for Incorporated Software }
284+
285+ This section is an incomplete, but growing list of licenses and
286+ acknowledgements for third-party software incorporated in the
287+ Python distribution.
288+
289+
290+ \subsection {Mersenne Twister }
291+
292+ The \module {_random} module includes code based on a download from
293+ \url {http://www.math.keio.ac.jp/~matumoto/MT2002/emt19937ar.html}.
294+ The following are the verbatim comments from the original code:
295+
296+ \begin {verbatim }
297+ A C-program for MT19937, with initialization improved 2002/1/26.
298+ Coded by Takuji Nishimura and Makoto Matsumoto.
299+
300+ Before using, initialize the state by using init_genrand(seed)
301+ or init_by_array(init_key, key_length).
302+
303+ Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
304+ All rights reserved.
305+
306+ Redistribution and use in source and binary forms, with or without
307+ modification, are permitted provided that the following conditions
308+ are met:
309+
310+ 1. Redistributions of source code must retain the above copyright
311+ notice, this list of conditions and the following disclaimer.
312+
313+ 2. Redistributions in binary form must reproduce the above copyright
314+ notice, this list of conditions and the following disclaimer in the
315+ documentation and/or other materials provided with the distribution.
316+
317+ 3. The names of its contributors may not be used to endorse or promote
318+ products derived from this software without specific prior written
319+ permission.
320+
321+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
322+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
323+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
324+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
325+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
326+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
327+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
328+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
329+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
330+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
331+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
332+
333+
334+ Any feedback is very welcome.
335+ http://www.math.keio.ac.jp/matumoto/emt.html
336+ 337+ \end {verbatim }
338+
339+
0 commit comments