Staging
v0.5.1
https://github.com/python/cpython
Revision ac7d0169d2bce2021b8d88973e649889d7dc1b03 authored by Victor Stinner on 24 November 2020, 12:38:08 UTC, committed by GitHub on 24 November 2020, 12:38:08 UTC
The smelly.py script now also checks the Python dynamic library and
extension modules, not only the Python static library. Make also the
script more verbose: explain what it does.

The GitHub Action job now builds Python with the libpython dynamic
library.
1 parent 14d81dc
Raw File
Tip revision: ac7d0169d2bce2021b8d88973e649889d7dc1b03 authored by Victor Stinner on 24 November 2020, 12:38:08 UTC
bpo-42212: smelly.py also checks the dynamic library (GH-23423)
Tip revision: ac7d016
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