diff options
author | Minmin Gong <gongminmin@msn.com> | 2019-02-03 04:26:55 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-02-03 04:26:55 (GMT) |
commit | 8ebc6451f36fa213130c316199dbec5ad8a02163 (patch) | |
tree | 8462031060a85ff44ddb0e45d5550a3900f6a18f /Misc | |
parent | 4c70d9f79c9b371990c8e054ccde53f7ff15946b (diff) | |
download | cpython-8ebc6451f36fa213130c316199dbec5ad8a02163.zip cpython-8ebc6451f36fa213130c316199dbec5ad8a02163.tar.gz cpython-8ebc6451f36fa213130c316199dbec5ad8a02163.tar.bz2 |
bpo-35890 : Fix some API calling consistency (GH-11742)
Unicode version of Windows APIs are used in places, but not for GetVersionEx in Python/sysmodule.c
The wcstok_s is called on Windows in Modules/main.c and PC/launcher.c, but not in Python/pathconfig.c
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2019-02-02-22-12-23.bpo-35890.ccIjHH.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2019-02-02-22-12-23.bpo-35890.ccIjHH.rst b/Misc/NEWS.d/next/Windows/2019-02-02-22-12-23.bpo-35890.ccIjHH.rst new file mode 100644 index 0000000..6bf6084 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2019-02-02-22-12-23.bpo-35890.ccIjHH.rst @@ -0,0 +1 @@ +Fix API calling consistency of GetVersionEx and wcstok.
\ No newline at end of file |