From: Serhiy Storchaka Date: Thu, 2 Apr 2015 16:57:52 +0000 (+0300) Subject: Issue #21526: Skip test_booleans on Tcl < 8.5. X-Git-Tag: v2.7.10rc1~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8ae0473cdf64d1244f472b28ec08202f32acc0e;p=thirdparty%2FPython%2Fcpython.git Issue #21526: Skip test_booleans on Tcl < 8.5. --- diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index 8ff2ebf6d215..927b0e3c90fd 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -406,6 +406,7 @@ class TclTest(unittest.TestCase): if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 check('2**64', True) + @unittest.skipUnless(tcl_version >= (8, 5), 'requires Tcl version >= 8.5') def test_booleans(self): tcl = self.interp def check(expr, expected):