Staging
v0.5.1
https://github.com/python/cpython
Revision b0331c94c2a210d50e43d99b249ec83ee165e70c authored by Miss Islington (bot) on 07 November 2017, 00:45:19 UTC, committed by Victor Stinner on 07 November 2017, 00:45:19 UTC
1 parent 9684cf6
Raw File
Tip revision: b0331c94c2a210d50e43d99b249ec83ee165e70c authored by Miss Islington (bot) on 07 November 2017, 00:45:19 UTC
bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (GH-3958) (#4303)
Tip revision: b0331c9
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

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