Return `path` as a Unicode POSIX path given a unicode or bytes path string.
(path)
| 1176 | |
| 1177 | |
| 1178 | def to_decoded_posix_path(path): |
| 1179 | """ |
| 1180 | Return `path` as a Unicode POSIX path given a unicode or bytes path string. |
| 1181 | """ |
| 1182 | return clean_path(os.fsdecode(as_posixpath(path))) |
| 1183 | |
| 1184 | |
| 1185 | @attr.attributes(slots=True) |
nothing calls this directly
no test coverage detected