]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38534: Replace wrong KB number references (GH-16955)
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 28 Oct 2019 18:15:24 +0000 (11:15 -0700)
committerGitHub <noreply@github.com>
Mon, 28 Oct 2019 18:15:24 +0000 (11:15 -0700)
(cherry picked from commit 794616f837c254c68d8384ab48fb78123a3c8a8b)

Co-authored-by: benedwards14 <53377856+benedwards14@users.noreply.github.com>
Doc/whatsnew/3.8.rst
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp

index 1d547a1fbf83ab3fdcf234d64516bb3cfe1beab4..21a6a00d8aa0d6aab934c8ea0d39b2ab80a5fba3 100644 (file)
@@ -1972,7 +1972,7 @@ Changes in the Python API
   resolution. If your application relies on these mechanisms, you should check
   for :func:`~os.add_dll_directory` and if it exists, use it to add your DLLs
   directory while loading your library. Note that Windows 7 users will need to
-  ensure that Windows Update KB2533625 has been installed (this is also verified
+  ensure that Windows Update KB2533623 has been installed (this is also verified
   by the installer).
   (Contributed by Steve Dower in :issue:`36085`.)
 
index 570798de1aafa80bbf2a1c7678107b594e8c160a..fbdf7b6424d617940712b6e8d70f15fd1ab482a9 100644 (file)
@@ -3013,8 +3013,8 @@ private:
             } else if (IsWindowsVersionOrGreater(6, 1, 1)) {
                 HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
                 if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
-                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533625");
-                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
+                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2008 R2 without KB2533623");
+                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
                     /* The "MissingSP1" error also specifies updates are required */
                     LocGetString(_wixLoc, L"#(loc.FailureWS2K8R2MissingSP1)", &pLocString);
                 } else {
@@ -3044,8 +3044,8 @@ private:
             } else if (IsWindows7SP1OrGreater()) {
                 HMODULE hKernel32 = GetModuleHandleW(L"kernel32");
                 if (hKernel32 && !GetProcAddress(hKernel32, "AddDllDirectory")) {
-                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533625");
-                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533625 update is required to continue.");
+                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows 7 SP1 without KB2533623");
+                    BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "KB2533623 update is required to continue.");
                     /* The "MissingSP1" error also specifies updates are required */
                     LocGetString(_wixLoc, L"#(loc.FailureWin7MissingSP1)", &pLocString);
                 } else {