Staging
v0.8.1
Revision 38c1a4d1f4397381edaf9c67990ecb329d0e8132 authored by Antoine Pitrou on 10 November 2010, 22:37:33 UTC, committed by Antoine Pitrou on 10 November 2010, 22:37:33 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86404 | antoine.pitrou | 2010-11-10 23:36:43 +0100 (mer., 10 nov. 2010) | 3 lines

  Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade on python.org
........
1 parent c40b25f
Raw File
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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