[Python-checkins] bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082)

zware webhook-mailer at python.org
Tue Oct 19 23:34:32 EDT 2021


https://github.com/python/cpython/commit/085ccb0f177988065dbe9ef4c5cda434560066bc
commit: 085ccb0f177988065dbe9ef4c5cda434560066bc
branch: main
author: Zachary Ware <zach at python.org>
committer: zware <zachary.ware at gmail.com>
date: 2021-10-19T22:34:23-05:00
summary:

bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082)

files:
M Lib/test/test_tcl.py

diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
index f18baa54e4a01..581c31ccb72fd 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -729,7 +729,6 @@ def test_huge_string_builtins(self, size):
         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)
 



More information about the Python-checkins mailing list