Staging
v0.5.1
https://github.com/python/cpython
Revision d3da7d394a64f3894b625842da4e5cc2f13bac08 authored by Neal Norwitz on 05 September 2006, 01:54:06 UTC, committed by Neal Norwitz on 05 September 2006, 01:54:06 UTC
1 parent 8568752
Raw File
Tip revision: d3da7d394a64f3894b625842da4e5cc2f13bac08 authored by Neal Norwitz on 05 September 2006, 01:54:06 UTC
Fix SF bug #1546288, crash in dict_equal
Tip revision: d3da7d3
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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