blob: ac2fe2bbb4351bc828d3c305d0c97a5c7641a49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Return the copyright string. This is updated manually. */
#include "Python.h"
static char cprt[] =
"Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam\n\
Copyright 1995-2000 Corporation for National Research Initiatives (CNRI)";
const char *
Py_GetCopyright(void)
{
return cprt;
}
|