(self)
| 199 | self.check_ast_roundtrip('''f"\\u2028{'x'}"''') |
| 200 | |
| 201 | def test_fstrings_pep701(self): |
| 202 | self.check_ast_roundtrip('f" something { my_dict["key"] } something else "') |
| 203 | self.check_ast_roundtrip('f"{f"{f"{f"{f"{f"{1+1}"}"}"}"}"}"') |
| 204 | |
| 205 | def test_tstrings(self): |
| 206 | self.check_ast_roundtrip("t'foo'") |
nothing calls this directly
no test coverage detected