We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64088f2 commit bbdfb94Copy full SHA for bbdfb94
src/filelock/_unix.py
@@ -26,6 +26,7 @@ def _release(self) -> None:
26
else: # pragma: win32 no cover
27
try:
28
import fcntl
29
+
30
_ = (fcntl.lock, fcntl.LOCK_EX, fcntl.LOCK_NB, fcntl.LOCK_UN)
31
except (ImportError, AttributeError):
32
pass
0 commit comments