summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-06 19:52:34 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-06 19:52:34 (GMT)
commit278d03bd66e40d57168ff66c6fb79eae599a784d (patch)
treef1d79e038b315e6596d3dce29e75ff602446f2b6 /Lib/test/test_builtin.py
parent9e64c91c922564a0510ec667dd38c11a7c1bd748 (diff)
downloadcpython-278d03bd66e40d57168ff66c6fb79eae599a784d.zip
cpython-278d03bd66e40d57168ff66c6fb79eae599a784d.tar.gz
cpython-278d03bd66e40d57168ff66c6fb79eae599a784d.tar.bz2
Revert a premature patch for issue #14010 (changeset aaaf36026511).
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r--Lib/test/test_builtin.py34
1 files changed, 1 insertions, 33 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index b473b00..c342a43 100644
--- a/Lib/test/test_builtin.py
+++ b/Lib/test/test_builtin.py
@@ -1565,40 +1565,8 @@ class TestSorted(unittest.TestCase):
data = 'The quick Brown fox Jumped over The lazy Dog'.split()
self.assertRaises(TypeError, sorted, data, None, lambda x,y: 0)
-class TestRecursionLimit(unittest.TestCase):
- # Issue #14010
- recursionlimit = sys.getrecursionlimit()
-
- def test_filter(self):
- it = (0, 1)
- for _ in range(self.recursionlimit):
- it = filter(bool, it)
- with self.assertRaises(RuntimeError):
- for _ in it:
- pass
- del it
-
- def test_map(self):
- it = (0, 1)
- for _ in range(self.recursionlimit):
- it = map(int, it)
- with self.assertRaises(RuntimeError):
- for _ in it:
- pass
- del it
-
- def test_zip(self):
- it = (0, 1)
- for _ in range(self.recursionlimit):
- it = zip(it)
- with self.assertRaises(RuntimeError):
- for _ in it:
- pass
- del it
-
-
def test_main(verbose=None):
- test_classes = (BuiltinTest, TestSorted, TestRecursionLimit)
+ test_classes = (BuiltinTest, TestSorted)
run_unittest(*test_classes)