summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-02 16:57:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-02 16:57:52 (GMT)
commite8ae0473cdf64d1244f472b28ec08202f32acc0e (patch)
treec5f05934b279e8d5cf94c244c2130c5b52970c13
parentc77c5b5f03e9798417df4142e17e0ac09ab4ba93 (diff)
downloadcpython-e8ae0473cdf64d1244f472b28ec08202f32acc0e.zip
cpython-e8ae0473cdf64d1244f472b28ec08202f32acc0e.tar.gz
cpython-e8ae0473cdf64d1244f472b28ec08202f32acc0e.tar.bz2
Issue #21526: Skip test_booleans on Tcl < 8.5.
-rw-r--r--Lib/test/test_tcl.py1
1 files changed, 1 insertions, 0 deletions
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 @@ 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):