Staging
v0.8.1
Revision f8247796b12ba699da67601f7ff5f043b2d7998e authored by Hirokazu Yamamoto on 09 September 2008, 13:56:11 UTC, committed by Hirokazu Yamamoto on 09 September 2008, 13:56:11 UTC
readlink(2) can return non-null-terminated string.
Reviewed by Amaury Forgeot d'Arc.
1 parent 29d95eb
Raw File
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

static char cprt[] = 
"\
Copyright (c) 2001-2008 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