(self)
| 2159 | "'b']\n") |
| 2160 | |
| 2161 | def test_backslash_continuation(self): |
| 2162 | # Backslash means line continuation, except for comments |
| 2163 | self.check_roundtrip("x=1+\\\n" |
| 2164 | "1\n" |
| 2165 | "# This is a comment\\\n" |
| 2166 | "# This also\n") |
| 2167 | self.check_roundtrip("# Comment \\\n" |
| 2168 | "x = 0") |
| 2169 | |
| 2170 | def test_string_concatenation(self): |
| 2171 | # Two string literals on the same line |
nothing calls this directly
no test coverage detected