blob: ac2fe2bbb4351bc828d3c305d0c97a5c7641a49d [file] [log] [blame]
/* 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;
}