Provides a version of the filename that's absolute (and NOT normalized).
(filename)
| 421 | |
| 422 | |
| 423 | def absolute_path(filename): |
| 424 | """ |
| 425 | Provides a version of the filename that's absolute (and NOT normalized). |
| 426 | """ |
| 427 | return get_abs_path_real_path_and_base_from_file(filename)[0] |
| 428 | |
| 429 | |
| 430 | def basename(filename): |
no test coverage detected