Issue #7455: Fix possible crash in cPickle on invalid input. Patch by
[python.git] / Python / getcopyright.c
bloba5e7fa6396e99e0cbad494d63aea4931eecf444b
1 /* Return the copyright string. This is updated manually. */
3 #include "Python.h"
5 static char cprt[] =
6 "\
7 Copyright (c) 2001-2010 Python Software Foundation.\n\
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.";
19 const char *
20 Py_GetCopyright(void)
22 return cprt;