Staging
v0.5.1
https://github.com/python/cpython
Revision 7f567e7472dd6c3d066eec1c204301df251484b5 authored by Victor Stinner on 10 July 2017, 21:13:49 UTC, committed by GitHub on 10 July 2017, 21:13:49 UTC
Handle getattr(copy, 'deepcopy') error in _elementtree module
initialization.
(cherry picked from commit b136f11f3a51f9282ae992bac68f170ca5563b55)
1 parent 69e4180
Raw File
Tip revision: 7f567e7472dd6c3d066eec1c204301df251484b5 authored by Victor Stinner on 10 July 2017, 21:13:49 UTC
bpo-30892: Fix _elementtree module initialization (#2647) (#2650)
Tip revision: 7f567e7
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