Provides the basename for a file.
(filename)
| 428 | |
| 429 | |
| 430 | def basename(filename): |
| 431 | """ |
| 432 | Provides the basename for a file. |
| 433 | """ |
| 434 | return get_abs_path_real_path_and_base_from_file(filename)[2] |
| 435 | |
| 436 | |
| 437 | # Returns tuple of absolute path and real path for given filename |
no test coverage detected