]> granicus.if.org Git - python/commitdiff
At Bob Kahn's request, add CNRI to the copyright string (but not to
authorGuido van Rossum <guido@python.org>
Wed, 10 May 2000 20:06:00 +0000 (20:06 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 10 May 2000 20:06:00 +0000 (20:06 +0000)
the notice yet).

Python/getcopyright.c

index 74d5b8716cac31f7fac4dd4f19b0c0278b450fc3..c34d6341a0df465e121f618c4953ab061253d042 100644 (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;
 }