Changes between Initial Version and Version 1 of Ticket #34720, comment 9


Ignore:
Timestamp:
Jul 20, 2023, 12:31:01 PM (10 months ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34720, comment 9

    initial v1  
    11Apologies if my note/solution distracted anyone from the original bug report. What was throwing us off is that it seems like `path.absolute()` will never raise an `FileNotFoundError` error. 
    22
    3 ```
     3{{{
    44> from pathlib import Path
    55> path = Path("i-do-not-exist.nope")
    66> path.absolute()
    77> PosixPath('/app/i-do-not-exist.nope')
    8 ```
     8}}}
    99
    1010I see your note about permissions, but I'm kind of surprised this code does anything.
Back to Top