(self, code)
| 2192 | |
| 2193 | |
| 2194 | def roundtrip(self, code): |
| 2195 | if isinstance(code, str): |
| 2196 | code = code.encode('utf-8') |
| 2197 | return tokenize.untokenize(tokenize.tokenize(BytesIO(code).readline)).decode('utf-8') |
| 2198 | |
| 2199 | def test_indentation_semantics_retained(self): |
| 2200 | """ |
no test coverage detected