Builds a native representation of the path.
(path)
| 49 | |
| 50 | @bjam_signature((["path"],)) |
| 51 | def native (path): |
| 52 | """ Builds a native representation of the path. |
| 53 | """ |
| 54 | # TODO: make os selection here. |
| 55 | return native_UNIX (path) |
| 56 | |
| 57 | def native_UNIX (path): |
| 58 | return path |
nothing calls this directly
no test coverage detected