At Bob Kahn's request, add CNRI to the copyright string (but not to

the notice yet).
This commit is contained in:
Guido van Rossum 2000-05-10 20:06:00 +00:00
parent 6cd948ebd8
commit cf3ba65749
1 changed files with 5 additions and 1 deletions

View File

@ -33,8 +33,12 @@ PERFORMANCE OF THIS SOFTWARE.
#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()
{
return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
return cprt;
}