()
| 218 | |
| 219 | |
| 220 | def test_unicodize_deep_nonstr(): |
| 221 | with pytest.raises(TypeError): |
| 222 | strings.unicodize_deep(Convertible(), relaxed=False) |
| 223 | x = Convertible() |
| 224 | assert x == strings.stringize_deep(x) |
| 225 | |
| 226 | |
| 227 | truncate_utf_8_data = [ |
nothing calls this directly
no test coverage detected