mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
8586991099
This should match the situation in the 1.6b1 tree.
14 lines
301 B
C
14 lines
301 B
C
/* Return the copyright string. This is updated manually. */
|
|
|
|
#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(void)
|
|
{
|
|
return cprt;
|
|
}
|