diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-02-20 17:08:48 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-02-20 17:08:48 (GMT) |
commit | d6712137444820e2ac15e07ce932e1bb15330359 (patch) | |
tree | a12d8150dcc97e8d0b287e7a8521fbec2046487a | |
parent | e7b92672a062de97fcf1f80521aea19b5082bfaa (diff) | |
download | cpython-d6712137444820e2ac15e07ce932e1bb15330359.zip cpython-d6712137444820e2ac15e07ce932e1bb15330359.tar.gz cpython-d6712137444820e2ac15e07ce932e1bb15330359.tar.bz2 |
Closes #23018: Replace copyright symbol with escape.
-rw-r--r-- | PC/python_ver_rc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/python_ver_rc.h b/PC/python_ver_rc.h index 1f1bebc..827e9be 100644 --- a/PC/python_ver_rc.h +++ b/PC/python_ver_rc.h @@ -4,7 +4,7 @@ #include "winver.h" #define PYTHON_COMPANY "Python Software Foundation" -#define PYTHON_COPYRIGHT "Copyright © 2001-2015 Python Software Foundation. Copyright © 2000 BeOpen.com. Copyright © 1995-2001 CNRI. Copyright © 1991-1995 SMC." +#define PYTHON_COPYRIGHT "Copyright \xA9 2001-2015 Python Software Foundation. Copyright \xA9 2000 BeOpen.com. Copyright \xA9 1995-2001 CNRI. Copyright \xA9 1991-1995 SMC." #define MS_WINDOWS #include "modsupport.h" |