From 8797dcd9d5744b56678777d79ab09ff7c28440ec Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 27 Oct 2013 12:38:01 +0200 Subject: Fixed merge test for Tcl/Tk <8.5 (issue #18964). --- Lib/test/test_tcl.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index 2cdac2b..cf1fcf9 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -277,9 +277,12 @@ class TclTest(unittest.TestCase): (('a', (2, 3.4)), 'a {2 3.4}'), ((), ''), ((call('list', 1, '2', (3.4,)),), '{1 2 3.4}'), - ((call('dict', 'create', 12, '\u20ac', b'\xe2\x82\xac', (3.4,)),), - '{12 € € 3.4}'), ] + if tcl_version >= (8, 5): + testcases += [ + ((call('dict', 'create', 12, '\u20ac', b'\xe2\x82\xac', (3.4,)),), + '{12 € € 3.4}'), + ] for args, res in testcases: self.assertEqual(merge(*args), res, msg=args) self.assertRaises(UnicodeDecodeError, merge, b'\x80') -- cgit v0.12