From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 24 Jun 2020 16:42:55 +0000 (-0700) Subject: bpo-41038: Fix non-ASCII string corruption in Win32 resource files (GH-20985) X-Git-Tag: v3.8.4rc1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb4a6241054ad6b7f24d1b32af6827e02936d568;p=thirdparty%2FPython%2Fcpython.git bpo-41038: Fix non-ASCII string corruption in Win32 resource files (GH-20985) In absence of explicit declaration, resource compiler uses system codepage. When this codepage is DBCS or UTF-8, Python's copyright string is corrupted, because it contains copyright sign encoded as \xA9. The fix is to explicitly declare codepage 1252. (cherry picked from commit 33b79b11b891adea5a916df8e3779505b37aabe7) Co-authored-by: Nikita Nemkin --- diff --git a/PC/python_ver_rc.h b/PC/python_ver_rc.h index f95e755bb8bd..d725a9ba06eb 100644 --- a/PC/python_ver_rc.h +++ b/PC/python_ver_rc.h @@ -1,6 +1,7 @@ // Resource script for Python core DLL. // Currently only holds version information. // +#pragma code_page(1252) #include "winver.h" #define PYTHON_COMPANY "Python Software Foundation"