From 885bdc4946890f4bb80557fab80c3874b2cc4d39 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 11 Feb 2016 13:10:36 +0200 Subject: Issue #25985: sys.version_info is now used instead of sys.version to format short Python version. --- Doc/includes/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Doc/includes/test.py') diff --git a/Doc/includes/test.py b/Doc/includes/test.py index 7ebf46afd1..9e9d4a6712 100644 --- a/Doc/includes/test.py +++ b/Doc/includes/test.py @@ -204,7 +204,7 @@ Test cyclic gc(?) import os import sys from distutils.util import get_platform -PLAT_SPEC = "%s-%s" % (get_platform(), sys.version[0:3]) +PLAT_SPEC = "%s-%d.%d" % (get_platform(), *sys.version_info[:2]) src = os.path.join("build", "lib.%s" % PLAT_SPEC) sys.path.append(src) -- cgit v1.2.1