summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tcl.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-02 16:59:34 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-02 16:59:34 (GMT)
commit9fe562b4996caa2caf2942d8daca56baf613b966 (patch)
tree1dce6fd17d7fcbabbe7e463536e508012440997a /Lib/test/test_tcl.py
parent4c7dc48ea579164e98c9a399711b4bb1c67d70eb (diff)
parenta5a4bd76fb4f2fca51124494cbc2ce124a8e8662 (diff)
downloadcpython-9fe562b4996caa2caf2942d8daca56baf613b966.zip
cpython-9fe562b4996caa2caf2942d8daca56baf613b966.tar.gz
cpython-9fe562b4996caa2caf2942d8daca56baf613b966.tar.bz2
Issue #21526: Skip test_booleans on Tcl < 8.5.
Diffstat (limited to 'Lib/test/test_tcl.py')
-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 03f28d4..f675032 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -389,6 +389,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):