You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
Native Windows gateway startup no longer crashes with No module named 'fcntl'
(issue #84). acquire_singleton_lock/release_singleton_lock imported the
Unix-only fcntl unconditionally; they now take the per-user single-instance
lock via msvcrt.locking on Windows and fcntl.flock on POSIX (selected by a
literal sys.platform check so type checkers narrow the platform-only
imports). WSL is unaffected. (resource was already import-guarded.)