bpo-42749: Use dynamic version to test for unsupported bignum in Tk (GH-23966)

Tk can internally support bignum even if Tkinter is built without
support of bignum.
This commit is contained in:
Serhiy Storchaka 2020-12-29 12:55:55 +02:00 committed by GitHub
parent c56988b88f
commit 156b7f7052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ class TclTest(unittest.TestCase):
else: else:
self.assertEqual(result, str(i)) self.assertEqual(result, str(i))
self.assertIsInstance(result, str) self.assertIsInstance(result, str)
if tcl_version < (8, 5): # bignum was added in Tcl 8.5 if get_tk_patchlevel() < (8, 5): # bignum was added in Tcl 8.5
self.assertRaises(TclError, tcl.call, 'expr', str(2**1000)) self.assertRaises(TclError, tcl.call, 'expr', str(2**1000))
def test_passing_values(self): def test_passing_values(self):