[Python-checkins] Fix yet one error in checking Tcl version. (GH-10189)

Serhiy Storchaka webhook-mailer at python.org
Sun Oct 28 14:58:07 EDT 2018


https://github.com/python/cpython/commit/569d12f44847f18fc5b514b24e8ab901b0d96895
commit: 569d12f44847f18fc5b514b24e8ab901b0d96895
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2018-10-28T20:58:04+02:00
summary:

Fix yet one error in checking Tcl version. (GH-10189)

files:
M Lib/tkinter/test/support.py

diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py
index 1321c056c2a2..467a0b66c265 100644
--- a/Lib/tkinter/test/support.py
+++ b/Lib/tkinter/test/support.py
@@ -64,7 +64,7 @@ def deco(test):
         def newtest(self):
             if get_tk_patchlevel() < version:
                 self.skipTest('requires Tcl version >= ' +
-                                '.'.join(map(str, get_tk_patchlevel())))
+                                '.'.join(map(str, version)))
             test(self)
         return newtest
     return deco



More information about the Python-checkins mailing list