getcopyright.c 504 Bytes
Newer Older
Guido van Rossum's avatar
Guido van Rossum committed
1 2
/* Return the copyright string.  This is updated manually. */

Guido van Rossum's avatar
Guido van Rossum committed
3 4
#include "Python.h"

5
static char cprt[] = 
6
"\
7
Copyright (c) 2001, 2002 Python Software Foundation.\n\
8 9 10
All Rights Reserved.\n\
\n\
Copyright (c) 2000 BeOpen.com.\n\
11 12
All Rights Reserved.\n\
\n\
13
Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
14
All Rights Reserved.\n\
15
\n\
16
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
17
All Rights Reserved.";
18

Guido van Rossum's avatar
Guido van Rossum committed
19
const char *
20
Py_GetCopyright(void)
Guido van Rossum's avatar
Guido van Rossum committed
21
{
22
	return cprt;
Guido van Rossum's avatar
Guido van Rossum committed
23
}