From: Zachary Ware Date: Wed, 20 Oct 2021 03:34:23 +0000 (-0500) Subject: bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082) X-Git-Tag: v3.11.0a2~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=085ccb0f177988065dbe9ef4c5cda434560066bc;p=thirdparty%2FPython%2Fcpython.git bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082) --- diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index f18baa54e4a0..581c31ccb72f 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -729,7 +729,6 @@ class BigmemTclTest(unittest.TestCase): self.assertRaises(OverflowError, tk.exprlong, value) self.assertRaises(OverflowError, tk.exprboolean, value) self.assertRaises(OverflowError, tk.splitlist, value) - self.assertRaises(OverflowError, tk.split, value) self.assertRaises(OverflowError, tk.createcommand, value, max) self.assertRaises(OverflowError, tk.deletecommand, value)