summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-28 18:57:38 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-10-28 18:57:38 (GMT)
commit8d09a059f625381096ab98201c5219453249812f (patch)
treea5d9748e157840afc7d7b2b6b624581e2088914f
parent5b2e1cfde28cce7f4b9275ec1b3757c561eef94e (diff)
downloadcpython-8d09a059f625381096ab98201c5219453249812f.zip
cpython-8d09a059f625381096ab98201c5219453249812f.tar.gz
cpython-8d09a059f625381096ab98201c5219453249812f.tar.bz2
[3.6] Fix checking for bugfix Tcl version. (GH-10185) (GH-10187)
(cherry picked from commit 18d57b4d6262bf96b5ac307bd84837c29ea04083) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-rw-r--r--Lib/tkinter/test/support.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py
index 0d9a65a..467a0b6 100644
--- a/Lib/tkinter/test/support.py
+++ b/Lib/tkinter/test/support.py
@@ -62,9 +62,9 @@ def requires_tcl(*version):
def deco(test):
@functools.wraps(test)
def newtest(self):
- if get_tk_patchlevel() < (8, 6, 5):
+ 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