diff options
author | Guido van Rossum <guido@python.org> | 2000-05-10 20:06:00 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-10 20:06:00 +0000 |
commit | ce40adde2f0d1e84a3c787ba3be0c9a9ee52a988 (patch) | |
tree | c88038f7141f1aaf874a7fa7ec6c26ea6a012d8b /Python/getcopyright.c | |
parent | 3ef361e45a056410cedccd8d0d19a226d822c441 (diff) | |
download | cpython-ce40adde2f0d1e84a3c787ba3be0c9a9ee52a988.tar.gz |
At Bob Kahn's request, add CNRI to the copyright string (but not to
the notice yet).
Diffstat (limited to 'Python/getcopyright.c')
-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 74d5b8716c..c34d6341a0 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; } |