Changes between Initial Version and Version 1 of Ticket #36010, comment 5


Ignore:
Timestamp:
Dec 19, 2024, 11:31:02 PM (4 weeks ago)
Author:
amansharma612

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36010, comment 5

    initial v1  
    1 `os.open(mo_path, "a")` has the semantics of creating a new file as long as the path is accessible (if accessible, `is_writable` never returns false). In such a scenario, using `os.access` leads to change in semantics and failing test cases.
     1`open(mo_path, "a")` has the semantics of creating a new file as long as the path is accessible (if accessible, `is_writable` never returns false). In such a scenario, using `os.access` leads to change in semantics and failing test cases.
    22
    33I will proceed with the first fix mentioned above to avoid breaking that behaviour.
Back to Top