diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-02 16:59:34 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-02 16:59:34 (GMT) |
commit | 9fe562b4996caa2caf2942d8daca56baf613b966 (patch) | |
tree | 1dce6fd17d7fcbabbe7e463536e508012440997a /Lib/test/test_tcl.py | |
parent | 4c7dc48ea579164e98c9a399711b4bb1c67d70eb (diff) | |
parent | a5a4bd76fb4f2fca51124494cbc2ce124a8e8662 (diff) | |
download | cpython-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.py | 1 |
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): |