[Python-checkins] CVS: python/dist/src/Python getcopyright.c,1.5,1.6

Guido van Rossum python-dev@python.org
Wed, 10 May 2000 16:06:03 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/projects/python/develop/guido/src/Python

Modified Files:
	getcopyright.c 
Log Message:
At Bob Kahn's request, add CNRI to the copyright string (but not to
the notice yet).


Index: getcopyright.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/getcopyright.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** getcopyright.c	1996/10/25 14:43:12	1.5
--- getcopyright.c	2000/05/10 20:06:00	1.6
***************
*** 34,40 ****
  #include "Python.h"
  
  const char *
  Py_GetCopyright()
  {
! 	return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
  }
--- 34,44 ----
  #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 cprt;
  }