Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef61cf commit 5f7d68eCopy full SHA for 5f7d68e
1 file changed
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