mirror of
https://mirror.skon.top/github.com/cft0808/edict
synced 2026-04-22 05:40:48 +08:00
在 Windows 平台上 fcntl 模块不存在,导致 ModuleNotFoundError。 改为平台条件分支:Unix 使用 fcntl.flock,Windows 使用 msvcrt.locking。 保持零外部依赖,完全向后兼容。 Fixes #180