[Python-checkins] cpython (3.5): Fixes magic numbers for 3.6.

steve.dower python-checkins at python.org
Mon May 16 14:05:22 EDT 2016


https://hg.python.org/cpython/rev/6c433a669e67
changeset:   101375:6c433a669e67
branch:      3.5
parent:      101373:d921932fe02f
user:        Steve Dower <steve.dower at microsoft.com>
date:        Mon May 16 11:04:44 2016 -0700
summary:
  Fixes magic numbers for 3.6.

files:
  PC/launcher.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/PC/launcher.c b/PC/launcher.c
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1082,7 +1082,7 @@
     { 3190, 3230, L"3.3" },
     { 3250, 3310, L"3.4" },
     { 3320, 3350, L"3.5" },
-    { 3350, 3350, L"3.6" },
+    { 3360, 3361, L"3.6" },
     { 0 }
 };
 

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


More information about the Python-checkins mailing list