(self)
| 177 | assert saferepr(value) == native |
| 178 | |
| 179 | def test_single_quote(self): |
| 180 | val = {"foo's": "bar's"} |
| 181 | assert ast.literal_eval(saferepr(val)) == val |
| 182 | |
| 183 | def test_unicode_bytes(self): |
| 184 | val = 'øystein'.encode() |
nothing calls this directly
no test coverage detected