fdatasync-not-available-on-darwin

Status: IN

Python's `os.fdatasync` exists only on Linux, not macOS/Darwin; any switch from `os.fsync` requires a platform fallback via `getattr(os, 'fdatasync', os.fsync)` to work on the current development environment

Source: entries/2026/05/29/topic-fdatasync-vs-fsync-optimization.md

JSON