• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Return the copyright string.  This is updated manually.
2 
3     Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>
4     This program and the accompanying materials are licensed and made available under
5     the terms and conditions of the BSD License that accompanies this distribution.
6     The full text of the license may be found at
7     http://opensource.org/licenses/bsd-license.
8 
9     THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10     WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 */
12 
13 #include "Python.h"
14 
15 static char cprt[] =
16 "\
17 Copyright (c) 2010-2011 Intel Corporation.\n\
18 All Rights Reserved.\n\
19 \n\
20 Copyright (c) 2001-2011 Python Software Foundation.\n\
21 All Rights Reserved.\n\
22 \n\
23 Copyright (c) 2000 BeOpen.com.\n\
24 All Rights Reserved.\n\
25 \n\
26 Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
27 All Rights Reserved.\n\
28 \n\
29 Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
30 All Rights Reserved.";
31 
32 const char *
Py_GetCopyright(void)33 Py_GetCopyright(void)
34 {
35   return cprt;
36 }
37