blob: 6248334b79a8ac26904e333b1733b636934e7a33 [file] [log] [blame]
Guido van Rossum582646a1996-05-28 22:30:17 +00001/***********************************************************
Guido van Rossum7cffd131996-07-21 02:28:11 +00002Copyright 1991-1996 by Stichting Mathematisch Centrum, Amsterdam,
Guido van Rossum582646a1996-05-28 22:30:17 +00003The Netherlands.
4
5 All Rights Reserved
6
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007Copyright (c) 2000, BeOpen.com.
8Copyright (c) 1995-2000, Corporation for National Research Initiatives.
9Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
10All rights reserved.
Guido van Rossum582646a1996-05-28 22:30:17 +000011
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000012See the file "Misc/COPYRIGHT" for information on usage and
13redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum582646a1996-05-28 22:30:17 +000014
15******************************************************************/
16
Guido van Rossum667d7041995-08-04 04:20:48 +000017/* Return the copyright string. This is updated manually. */
18
Guido van Rossum020dfe71995-09-18 21:40:19 +000019#include "Python.h"
20
Guido van Rossumcf3ba652000-05-10 20:06:00 +000021static char cprt[] =
22"Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam\n\
23Copyright 1995-2000 Corporation for National Research Initiatives (CNRI)";
24
Guido van Rossum667d7041995-08-04 04:20:48 +000025const char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000026Py_GetCopyright(void)
Guido van Rossum667d7041995-08-04 04:20:48 +000027{
Guido van Rossumcf3ba652000-05-10 20:06:00 +000028 return cprt;
Guido van Rossum667d7041995-08-04 04:20:48 +000029}