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)
commita5a4bd76fb4f2fca51124494cbc2ce124a8e8662 (patch)
treed5c1afe850a48012c28bbfa9d377a9e579fdbe60
parentea134da9297b14bfa8dbf3a45149bc2df28c1eb9 (diff)
downloadcpython-a5a4bd76fb4f2fca51124494cbc2ce124a8e8662.zip
cpython-a5a4bd76fb4f2fca51124494cbc2ce124a8e8662.tar.gz
cpython-a5a4bd76fb4f2fca51124494cbc2ce124a8e8662.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 9b1a8d7..3810e12 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -391,6 +391,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):