We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d347ba7 commit 6f7d1b4Copy full SHA for 6f7d1b4
Lib/test/test_compile.py
@@ -108,7 +108,6 @@ def __getitem__(self, key):
108
exec('z = a', g, d)
109
self.assertEqual(d['z'], 12)
110
111
- @unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
112
def test_extended_arg(self):
113
# default: 1000 * 2.5 = 2500 repetitions
114
repeat = int(sys.getrecursionlimit() * 2.5)
@@ -543,7 +542,6 @@ def test_yet_more_evil_still_undecodable(self):
543
542
self.assertIn(b"Non-UTF-8", res.err)
544
545
@support.cpython_only
546
547
def test_compiler_recursion_limit(self):
548
# Expected limit is sys.getrecursionlimit() * the scaling factor
549
# in symtable.c (currently 3)
0 commit comments