cpython/Python/getcopyright.c
Guido van Rossum 8586991099 REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.
2000-09-01 23:29:29 +00:00

14 lines
301 B
C

/* 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;
}