Changes between Initial Version and Version 1 of Ticket #36010, comment 5
- Timestamp:
- Dec 19, 2024, 11:31:02 PM (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36010, comment 5
initial v1 1 `o s.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. 2 2 3 3 I will proceed with the first fix mentioned above to avoid breaking that behaviour.