diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-31 05:20:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-31 05:20:58 (GMT) |
commit | 7f69dcac166abc21dc762e07fdf6a338520ee2e6 (patch) | |
tree | c9596333cfe3da40f59af4098c9be8b52190839e /Python/getcopyright.c | |
parent | 9b83d533e2651fa80b81abb114eb6e43c1e383c9 (diff) | |
download | cpython-7f69dcac166abc21dc762e07fdf6a338520ee2e6.zip cpython-7f69dcac166abc21dc762e07fdf6a338520ee2e6.tar.gz cpython-7f69dcac166abc21dc762e07fdf6a338520ee2e6.tar.bz2 |
make string literal const
Diffstat (limited to 'Python/getcopyright.c')
-rw-r--r-- | Python/getcopyright.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 2d26787..2b19622 100644 --- a/Python/getcopyright.c +++ b/Python/getcopyright.c @@ -2,7 +2,7 @@ #include "Python.h" -static char cprt[] = +static const char cprt[] = "\ Copyright (c) 2001-2013 Python Software Foundation.\n\ All Rights Reserved.\n\ |