We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ef61cf commit 5f7d68eCopy full SHA for 5f7d68e
Lib/test/test_fstring.py
@@ -13,6 +13,7 @@
13
import types
14
import decimal
15
import unittest
16
+from test import support
17
from test.support.os_helper import temp_cwd
18
from test.support.script_helper import assert_python_failure
19
@@ -536,6 +537,7 @@ def test_unterminated_string(self):
536
537
r"""f'{("x}'""",
538
])
539
540
+ @unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
541
def test_mismatched_parens(self):
542
self.assertAllRaise(SyntaxError, r"closing parenthesis '\}' "
543
r"does not match opening parenthesis '\('",
0 commit comments