Staging
v0.5.1
https://github.com/python/cpython
Revision e4b359de76e816f07109a7ecd47d6c690f0fa5b6 authored by Miss Islington (bot) on 06 September 2020, 02:54:12 UTC, committed by GitHub on 06 September 2020, 02:54:12 UTC


Automerge-Triggered-By: @gvanrossum
(cherry picked from commit 2623868ede4ef3c848fc83a9b1e19e0d031dee1d)


Co-authored-by: Andre Delfino <adelfino@gmail.com>
1 parent a708ae7
Raw File
Tip revision: e4b359de76e816f07109a7ecd47d6c690f0fa5b6 authored by Miss Islington (bot) on 06 September 2020, 02:54:12 UTC
[3.9] [doc] Fix padding in some typing definitions (GH-22114) (GH-22115)
Tip revision: e4b359d
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