mirror of https://github.com/python/cpython
gh-104016: Skip test for deeply neste f-strings on wasi (#104071)
This commit is contained in:
parent
605f8785db
commit
b1ca34d4d5
|
@ -561,6 +561,7 @@ x = (
|
|||
])
|
||||
self.assertRaises(SyntaxError, eval, "f'{" + "("*500 + "}'")
|
||||
|
||||
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
|
||||
def test_fstring_nested_too_deeply(self):
|
||||
self.assertAllRaise(SyntaxError,
|
||||
"f-string: expressions nested too deeply",
|
||||
|
|
Loading…
Reference in New Issue