summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-02 17:07:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-02 17:07:09 (GMT)
commit2379d541dd2a4944713999f0071d53fdddee3d47 (patch)
tree8022c62b90cedb5aba16d4084b48d0307dd2337a
parenta5a4bd76fb4f2fca51124494cbc2ce124a8e8662 (diff)
downloadcpython-2379d541dd2a4944713999f0071d53fdddee3d47.zip
cpython-2379d541dd2a4944713999f0071d53fdddee3d47.tar.gz
cpython-2379d541dd2a4944713999f0071d53fdddee3d47.tar.bz2
Issue #16840: Fixed test_tcl for Tcl < 8.5.
-rw-r--r--Lib/test/test_tcl.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
index 3810e12..bf6bd9b 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -145,7 +145,9 @@ class TclTest(unittest.TestCase):
tcl = self.interp.tk
for i in self.get_integers():
self.assertEqual(tcl.getint(' %d ' % i), i)
- self.assertEqual(tcl.getint(' %#o ' % i), i)
+ if tcl_version >= (8, 5):
+ self.assertEqual(tcl.getint(' %#o ' % i), i)
+ self.assertEqual(tcl.getint((' %#o ' % i).replace('o', '')), i)
self.assertEqual(tcl.getint(' %#x ' % i), i)
if tcl_version < (8, 5): # bignum was added in Tcl 8.5
self.assertRaises(TclError, tcl.getint, str(2**1000))
@@ -422,9 +424,7 @@ class TclTest(unittest.TestCase):
self.assertEqual(result, str(i))
self.assertIsInstance(result, str)
if tcl_version < (8, 5): # bignum was added in Tcl 8.5
- result = tcl.call('expr', str(2**1000))
- self.assertEqual(result, str(2**1000))
- self.assertIsInstance(result, str)
+ self.assertRaises(TclError, tcl.call, 'expr', str(2**1000))
def test_passing_values(self):
def passValue(value):