Staging
v0.5.1
https://github.com/python/cpython
Revision 6348364ba5a76c66bd8a8e5466d7f9db435b88e3 authored by Miss Islington (bot) on 02 July 2019, 05:29:05 UTC, committed by Ned Deily on 02 July 2019, 07:03:00 UTC
(cherry picked from commit 2cd07920bb7d2d319999394092190f37935dc421)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent 329a1d8
Raw File
Tip revision: 6348364ba5a76c66bd8a8e5466d7f9db435b88e3 authored by Miss Islington (bot) on 02 July 2019, 05:29:05 UTC
Put pyexpatns.h include back. bpo-37437 (GH-14539)
Tip revision: 6348364
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

static const 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