Staging
v0.8.1
https://github.com/python/cpython
Revision ce5e6f098f8a270e50b989baa75765584573706b authored by Łukasz Langa on 09 June 2020, 17:50:01 UTC, committed by GitHub on 09 June 2020, 17:50:01 UTC
This reverts commit 9cf1be46e3692d565461afd3afa326d124d743dd due to
https://bugs.python.org/issue40924.
1 parent 6cb24a0
Raw File
Tip revision: ce5e6f098f8a270e50b989baa75765584573706b authored by Łukasz Langa on 09 June 2020, 17:50:01 UTC
[3.9] bpo-40924: Revert "bpo-39791 native hooks for importlib.resources.files (GH-20576)" (#20760)
Tip revision: ce5e6f0
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