Staging
v0.5.1
https://github.com/python/cpython
Revision 907ee1f14aaf587683ced44818c5a1d1cabf4174 authored by Miss Islington (bot) on 24 May 2020, 21:31:47 UTC, committed by GitHub on 24 May 2020, 21:31:47 UTC
(cherry picked from commit c73914a562580ae72048876cb42ed8e76e2c83f9)

Co-authored-by: RĂ©mi Lapeyre <remi.lapeyre@lenstra.fr>
1 parent 1ae0fd8
Raw File
Tip revision: 907ee1f14aaf587683ced44818c5a1d1cabf4174 authored by Miss Islington (bot) on 24 May 2020, 21:31:47 UTC
bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)
Tip revision: 907ee1f
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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