[Python-checkins] bpo-34565: Change a PC/launcher.c comment to accurately describe valid major versions. (GH-9037)

Steve Dower webhook-mailer at python.org
Tue Sep 4 12:35:55 EDT 2018


https://github.com/python/cpython/commit/3876af4f7c2ef87db6d2d83efc229955968926dd
commit: 3876af4f7c2ef87db6d2d83efc229955968926dd
branch: master
author: Brendan Gerrity <brerrity at gmail.com>
committer: Steve Dower <steve.dower at microsoft.com>
date: 2018-09-04T09:35:46-07:00
summary:

bpo-34565: Change a PC/launcher.c comment to accurately describe valid major versions. (GH-9037)

files:
M PC/launcher.c

diff --git a/PC/launcher.c b/PC/launcher.c
index fcc3abb63de6..75a06c2310c8 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1051,7 +1051,7 @@ static BOOL
 validate_version(wchar_t * p)
 {
     /*
-    Version information should start with one of 2 or 3,
+    Version information should start with the major version,
     Optionally followed by a period and a minor version,
     Optionally followed by a minus and one of 32 or 64.
     Valid examples:
@@ -1068,7 +1068,7 @@ validate_version(wchar_t * p)
     */
     BOOL result = (p != NULL); /* Default to False if null pointer. */
 
-    result = result && iswdigit(*p);  /* Result = False if fist string element is not a digit. */
+    result = result && iswdigit(*p);  /* Result = False if first string element is not a digit. */
 
     while (result && iswdigit(*p))   /* Require a major version */
         ++p;  /* Skip all leading digit(s) */



More information about the Python-checkins mailing list