commit | e8ae0473cdf64d1244f472b28ec08202f32acc0e | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Thu Apr 02 19:57:52 2015 +0300 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Thu Apr 02 19:57:52 2015 +0300 |
tree | c5f05934b279e8d5cf94c244c2130c5b52970c13 | |
parent | c77c5b5f03e9798417df4142e17e0ac09ab4ba93 [diff] [blame] |
Issue #21526: Skip test_booleans on Tcl < 8.5.
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index 8ff2ebf..927b0e3 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py
@@ -406,6 +406,7 @@ 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):