Staging
v0.5.1
https://github.com/python/cpython
Revision e29ab7e75138e198b51c8bd04afa16d9d2c976a5 authored by Miss Islington (bot) on 07 September 2017, 00:04:14 UTC, committed by R. David Murray on 07 September 2017, 00:04:14 UTC
(cherry picked from commit 8204b903683f9e0f037ccfaa87622716019914d7)
1 parent fd645ec
Raw File
Tip revision: e29ab7e75138e198b51c8bd04afa16d9d2c976a5 authored by Miss Islington (bot) on 07 September 2017, 00:04:14 UTC
[3.6] bpo-30824: Add mimetype for .json (GH-3048) (#3401)
Tip revision: e29ab7e
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