mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #21526: Skip test_booleans on Tcl < 8.5.
This commit is contained in:
parent
ea134da929
commit
a5a4bd76fb
1 changed files with 1 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue