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