Staging
v0.8.1
https://github.com/python/cpython
Revision f533cb80cbbb7acdf9ce1978cfba095ce5eeedaa authored by Yurii Karabas on 26 November 2020, 07:36:37 UTC, committed by GitHub on 26 November 2020, 07:36:37 UTC
1 parent 87f7ab5
Raw File
Tip revision: f533cb80cbbb7acdf9ce1978cfba095ce5eeedaa authored by Yurii Karabas on 26 November 2020, 07:36:37 UTC
bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)
Tip revision: f533cb8
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