[Python-checkins] cpython: Closes #23018: Replace copyright symbol with escape.

steve.dower python-checkins at python.org
Fri Feb 20 18:13:34 CET 2015


https://hg.python.org/cpython/rev/843a8ee94270
changeset:   94703:843a8ee94270
user:        Steve Dower <steve.dower at microsoft.com>
date:        Fri Feb 20 09:08:48 2015 -0800
summary:
  Closes #23018: Replace copyright symbol with escape.

files:
  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
--- 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"

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list