diff options
author | Guido van Rossum <guido@python.org> | 2000-05-10 20:06:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-10 20:06:00 (GMT) |
commit | cf3ba6574937d029aadac577996e79ca2aa7a1a2 (patch) | |
tree | 38d5eb17cbf78513e17659c4f0e45776c1af218b /Python | |
parent | 6cd948ebd8d582c13894b3cc7925ef305808210d (diff) | |
download | cpython-cf3ba6574937d029aadac577996e79ca2aa7a1a2.zip cpython-cf3ba6574937d029aadac577996e79ca2aa7a1a2.tar.gz cpython-cf3ba6574937d029aadac577996e79ca2aa7a1a2.tar.bz2 |
At Bob Kahn's request, add CNRI to the copyright string (but not to
the notice yet).
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getcopyright.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 74d5b87..c34d634 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; } |