source: vendor/python/2.5/Python/getcopyright.c

Last change on this file was 3225, checked in by bird, 18 years ago

Python 2.5

File size: 503 bytes
Line 
1/* Return the copyright string. This is updated manually. */
2
3#include "Python.h"
4
5static char cprt[] =
6"\
7Copyright (c) 2001-2006 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}
Note: See TracBrowser for help on using the repository browser.