This returns a filename that is canonical and it's meant to be used internally to store information on breakpoints and see if there's any hit on it. Note that this version is only internal as it may not match the case and may have symlinks resolved (and thus may not match what the
(filename)
| 409 | |
| 410 | |
| 411 | def canonical_normalized_path(filename): |
| 412 | """ |
| 413 | This returns a filename that is canonical and it's meant to be used internally |
| 414 | to store information on breakpoints and see if there's any hit on it. |
| 415 | |
| 416 | Note that this version is only internal as it may not match the case and |
| 417 | may have symlinks resolved (and thus may not match what the user expects |
| 418 | in the editor). |
| 419 | """ |
| 420 | return get_abs_path_real_path_and_base_from_file(filename)[1] |
| 421 | |
| 422 | |
| 423 | def absolute_path(filename): |