diff options
author | Nikita Nemkin <nikita@nemkin.ru> | 2020-06-24 16:27:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 16:27:42 (GMT) |
commit | 33b79b11b891adea5a916df8e3779505b37aabe7 (patch) | |
tree | 9fe2adc08f7b4dadcae4bcc3c869a35ca84d9deb /PC | |
parent | 0430dfac629b4eb0e899a09b899a494aa92145f6 (diff) | |
download | cpython-33b79b11b891adea5a916df8e3779505b37aabe7.zip cpython-33b79b11b891adea5a916df8e3779505b37aabe7.tar.gz cpython-33b79b11b891adea5a916df8e3779505b37aabe7.tar.bz2 |
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.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/python_ver_rc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PC/python_ver_rc.h b/PC/python_ver_rc.h index c318d44..060aecd 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" |