1/* Return the copyright string. This is updated manually. */
2
3#include "Python.h"
4
5static const char cprt[] =
6"\
7Copyright (c) 2001-2022 Python Software Foundation.\n\
8All Rights Reserved.\n\
9\n\
10Copyright (c) 2000 BeOpen.com.\n\
11All Rights Reserved.\n\
12\n\
13Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
14All Rights Reserved.\n\
15\n\
16Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
17All Rights Reserved.";
18
19const char *
20Py_GetCopyright(void)
21{
22 return cprt;
23}
24