[Python-checkins] cpython (merge 3.5 -> default): Issue #27705: Update message in validate_ucrtbase.py

steve.dower python-checkins at python.org
Fri Sep 9 21:25:44 EDT 2016


https://hg.python.org/cpython/rev/a791a54c0a1c
changeset:   103524:a791a54c0a1c
parent:      103522:2460b30c1985
parent:      103523:7f7a994bbfbc
user:        Steve Dower <steve.dower at microsoft.com>
date:        Fri Sep 09 18:25:29 2016 -0700
summary:
  Issue #27705: Update message in validate_ucrtbase.py

files:
  Misc/NEWS               |  2 ++
  PC/validate_ucrtbase.py |  5 +++--
  2 files changed, 5 insertions(+), 2 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -328,6 +328,8 @@
 Build
 -----
 
+- Issue #27705: Update message in validate_ucrtbase.py
+
 - Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on
   non-OSX UNIX platforms.
 
diff --git a/PC/validate_ucrtbase.py b/PC/validate_ucrtbase.py
--- a/PC/validate_ucrtbase.py
+++ b/PC/validate_ucrtbase.py
@@ -82,7 +82,8 @@
 
 if ver < (10, 0, 10586):
     print('WARN: ucrtbased contains known issues. '
-          'Please update Visual Studio or the Windows SDK.')
+          'Please update the Windows 10 SDK.')
     print('See:')
-    print('  http://bugs.python.org/issue26624')
+    print('  http://bugs.python.org/issue27705')
+    print('  https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk')
     sys.exit(1)

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


More information about the Python-checkins mailing list