(x, enc=DEFAULT_ENCODING, relaxed=True)
| 94 | |
| 95 | # Result as from six.ensure_binary |
| 96 | def stringize_deep(x, enc=DEFAULT_ENCODING, relaxed=True): |
| 97 | return _convert_deep(x, enc, to_str, relaxed) |
| 98 | |
| 99 | |
| 100 | @library.python.func.memoize() |
nothing calls this directly
no test coverage detected