diff options
author | R David Murray <rdmurray@bitdance.com> | 2016-07-10 14:10:08 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2016-07-10 14:10:08 -0400 |
commit | 87de053ac106f336b60770e127d3ea76360f4dda (patch) | |
tree | cb9b04c6880af9224feea058dd65de3823168202 /Python/getcopyright.c | |
parent | 425f915808a8da11d653b9d6ded523892d1de7b0 (diff) | |
parent | dea7e3988f9d327e2a9d0af4473c2876b0ce8a00 (diff) | |
download | cpython-87de053ac106f336b60770e127d3ea76360f4dda.tar.gz |
#22758 null merge
Diffstat (limited to 'Python/getcopyright.c')
-rw-r--r-- | Python/getcopyright.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/getcopyright.c b/Python/getcopyright.c index ba66474d01..c3f1e89599 100644 --- a/Python/getcopyright.c +++ b/Python/getcopyright.c @@ -2,9 +2,9 @@ #include "Python.h" -static char cprt[] = +static const char cprt[] = "\ -Copyright (c) 2001-2015 Python Software Foundation.\n\ +Copyright (c) 2001-2016 Python Software Foundation.\n\ All Rights Reserved.\n\ \n\ Copyright (c) 2000 BeOpen.com.\n\ @@ -19,5 +19,5 @@ All Rights Reserved."; const char * Py_GetCopyright(void) { - return cprt; + return cprt; } |