From: Guido van Rossum Date: Wed, 10 May 2000 20:06:00 +0000 (+0000) Subject: At Bob Kahn's request, add CNRI to the copyright string (but not to X-Git-Tag: v2.0b1~1773 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf3ba6574937d029aadac577996e79ca2aa7a1a2;p=thirdparty%2FPython%2Fcpython.git At Bob Kahn's request, add CNRI to the copyright string (but not to the notice yet). --- diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 74d5b8716cac..c34d6341a0df 100644 --- a/Python/getcopyright.c +++ b/Python/getcopyright.c @@ -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; }