(x, enc=DEFAULT_ENCODING, relaxed=True)
| 84 | |
| 85 | # Result as from six.ensure_text |
| 86 | def unicodize_deep(x, enc=DEFAULT_ENCODING, relaxed=True): |
| 87 | return _convert_deep(x, enc, to_unicode, relaxed) |
| 88 | |
| 89 | |
| 90 | # Result as from six.ensure_str |
nothing calls this directly
no test coverage detected