Staging
v0.5.1
https://github.com/python/cpython
Revision cf0d8ab818852503057b8ade6cccc403fbb5d2be authored by Barry Warsaw on 23 May 2011, 19:22:56 UTC, committed by Barry Warsaw on 23 May 2011, 19:22:56 UTC
message:

Reconcile with the 2.6svn branch.  The 2.6.7 release will be made from
Subversion, but there were differences, so this brings them in sync.  These
changes should *not* propagate to any newer versions.
1 parent e26bc10
Raw File
Tip revision: cf0d8ab818852503057b8ade6cccc403fbb5d2be authored by Barry Warsaw on 23 May 2011, 19:22:56 UTC
Replay changeset 70238:03e488b5c009 from fubar branch. Original commit
Tip revision: cf0d8ab
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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