Kaydet (Commit) 9fe562b4 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Issue #21526: Skip test_booleans on Tcl < 8.5.

......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment