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: v3.5.0a4~193^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5a4bd76fb4f2fca51124494cbc2ce124a8e8662;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 9b1a8d7701d6..3810e12ed062 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):