Staging
v0.5.1
https://github.com/python/cpython
Revision bb4d3527cf8a17d6b8e57c608033cf065ce67078 authored by Benjamin Peterson on 29 June 2014, 20:02:12 UTC, committed by Benjamin Peterson on 29 June 2014, 20:02:12 UTC
1 parent 4becf85
Raw File
Tip revision: bb4d3527cf8a17d6b8e57c608033cf065ce67078 authored by Benjamin Peterson on 29 June 2014, 20:02:12 UTC
add a test for access errors from OpenKey (closes #21871)
Tip revision: bb4d352
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

static char cprt[] = 
"\
Copyright (c) 2001-2014 Python Software Foundation.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 2000 BeOpen.com.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
All Rights Reserved.";

const char *
Py_GetCopyright(void)
{
	return cprt;
}
back to top