Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 1c7b14197b10924e2efc1e6c99c720958be1f681 authored by Ned Deily on 08 October 2019, 02:13:04 UTC
Update macOS installer displays for 2.7.17rc1 (#16634)
Tip revision: 1c7b141
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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