Config.in 684 B

1234567891011121314151617
  1. config BR2_PACKAGE_PYTHON_LOCKFILE
  2. bool "python-lockfile"
  3. help
  4. The lockfile package exports a LockFile class which provides a
  5. simple API for locking files. Unlike the Windows
  6. msvcrt.locking function, the fcntl.lockf and flock functions,
  7. and the deprecated posixfile module, the API is identical
  8. across both Unix (including Linux and Mac) and Windows
  9. platforms.
  10. The lock mechanism relies on the atomic nature of the link
  11. (on Unix) and mkdir (on Windows) system calls. An
  12. implementation based on SQLite is also provided, more as a
  13. demonstration of the possibilities it provides than as
  14. production-quality code.
  15. https://pypi.org/project/lockfile/