Staging
v0.5.1
https://github.com/python/cpython
Revision af9cda9845666e2f704177a431d29f91efbf828a authored by Yury Selivanov on 30 May 2018, 00:56:33 UTC, committed by GitHub on 30 May 2018, 00:56:33 UTC
This reverts commit 2a7eb0b531656f4a77d85078e6e009e4b3639ef9.
1 parent 3ddee64
Raw File
Tip revision: af9cda9845666e2f704177a431d29f91efbf828a authored by Yury Selivanov on 30 May 2018, 00:56:33 UTC
Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (GH-7233)
Tip revision: af9cda9
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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