Staging
v0.5.1
https://github.com/python/cpython
Revision a813a638ef92dfde2cff66339b319780691f4bb3 authored by Brian Curtin on 31 October 2010, 00:05:24 UTC, committed by Brian Curtin on 31 October 2010, 00:05:24 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86003 | brian.curtin | 2010-10-30 19:03:45 -0500 (Sat, 30 Oct 2010) | 2 lines

  Fix ResourceWarning. Use context manager to properly close file.
........
1 parent 46805e9
Raw File
Tip revision: a813a638ef92dfde2cff66339b319780691f4bb3 authored by Brian Curtin on 31 October 2010, 00:05:24 UTC
Merged revisions 86003 via svnmerge from
Tip revision: a813a63
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