(self)
| 182 | ) |
| 183 | |
| 184 | def test_fstrings_special_chars(self): |
| 185 | # See issue 25180 |
| 186 | self.check_ast_roundtrip(r"""f'{f"{0}"*3}'""") |
| 187 | self.check_ast_roundtrip(r"""f'{f"{y}"*3}'""") |
| 188 | self.check_ast_roundtrip("""f''""") |
| 189 | self.check_ast_roundtrip('''f"""'end' "quote\\""""''') |
| 190 | |
| 191 | def test_fstrings_complicated(self): |
| 192 | # See issue 28002 |
nothing calls this directly
no test coverage detected