diff options
author | Zachary Ware <zach@python.org> | 2021-10-20 03:34:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 03:34:23 (GMT) |
commit | 085ccb0f177988065dbe9ef4c5cda434560066bc (patch) | |
tree | ec097a498da484c1dbb55b713500f26963450124 | |
parent | 4fe454c6f54b0948af67b53af6c2f35af6377e69 (diff) | |
download | cpython-085ccb0f177988065dbe9ef4c5cda434560066bc.zip cpython-085ccb0f177988065dbe9ef4c5cda434560066bc.tar.gz cpython-085ccb0f177988065dbe9ef4c5cda434560066bc.tar.bz2 |
bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082)
-rw-r--r-- | Lib/test/test_tcl.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index f18baa5..581c31c 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) |