Staging
v0.8.1
https://github.com/python/cpython
Revision 8645a5c81fde0afe0e00e122b64f6bc586844ec3 authored by Amaury Forgeot d'Arc on 29 December 2009, 22:03:38 UTC, committed by Amaury Forgeot d'Arc on 29 December 2009, 22:03:38 UTC
1 parent fa1ffb6
Raw File
Tip revision: 8645a5c81fde0afe0e00e122b64f6bc586844ec3 authored by Amaury Forgeot d'Arc on 29 December 2009, 22:03:38 UTC
#7413: Passing '\0' as the separator to datetime.datetime.isoformat()
Tip revision: 8645a5c
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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