Last change
on this file was 391, checked in by dmik, 11 years ago |
python: Merge vendor 2.7.6 to trunk.
|
-
Property svn:eol-style
set to
native
|
File size:
503 bytes
|
Rev | Line | |
---|
[2] | 1 | /* Return the copyright string. This is updated manually. */
|
---|
| 2 |
|
---|
| 3 | #include "Python.h"
|
---|
| 4 |
|
---|
| 5 | static char cprt[] =
|
---|
| 6 | "\
|
---|
[391] | 7 | Copyright (c) 2001-2013 Python Software Foundation.\n\
|
---|
[2] | 8 | All Rights Reserved.\n\
|
---|
| 9 | \n\
|
---|
| 10 | Copyright (c) 2000 BeOpen.com.\n\
|
---|
| 11 | All Rights Reserved.\n\
|
---|
| 12 | \n\
|
---|
| 13 | Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
|
---|
| 14 | All Rights Reserved.\n\
|
---|
| 15 | \n\
|
---|
| 16 | Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
|
---|
| 17 | All Rights Reserved.";
|
---|
| 18 |
|
---|
| 19 | const char *
|
---|
| 20 | Py_GetCopyright(void)
|
---|
| 21 | {
|
---|
| 22 | return cprt;
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.