(x)
| 75 | return asbytes(x) |
| 76 | |
| 77 | def asunicode_nested(x): |
| 78 | if hasattr(x, '__iter__') and not isinstance(x, (bytes, unicode)): |
| 79 | return [asunicode_nested(y) for y in x] |
| 80 | else: |
| 81 | return asunicode(x) |
| 82 | |
| 83 | def is_pathlib_path(obj): |
| 84 | """ |
nothing calls this directly
no test coverage detected