Staging
v0.5.1
https://github.com/python/cpython
Revision 9a740b6c7e7a88185d79128b8a1993ac387d5091 authored by Miss Islington (bot) on 04 February 2020, 15:31:19 UTC, committed by GitHub on 04 February 2020, 15:31:19 UTC

Adds an additional assertion check based on a race condition for `test__xxsubinterpreters.DestroyTests.test_still_running` discovered in the bpo issue.

https://bugs.python.org/issue37224
(cherry picked from commit f03a8f8d5001963ad5b5b28dbd95497e9cc15596)

Co-authored-by: Kyle Stanley <aeros167@gmail.com>
1 parent a0389ba
Raw File
Tip revision: 9a740b6c7e7a88185d79128b8a1993ac387d5091 authored by Miss Islington (bot) on 04 February 2020, 15:31:19 UTC
bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058)
Tip revision: 9a740b6
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