PKG-INFO 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. Metadata-Version: 1.0
  2. Name: lockfile
  3. Version: 0.8
  4. Summary: Platform-independent file locking module
  5. Home-page: http://smontanaro.dyndns.org/python/
  6. Author: Skip Montanaro
  7. Author-email: skip@pobox.com
  8. License: MIT License
  9. Download-URL: http://smontanaro.dyndns.org/python/lockfile-0.8.tar.gz
  10. Description:
  11. The lockfile module exports a FileLock class which provides a simple
  12. API for locking files. Unlike the Windows msvcrt.locking function,
  13. the Unix fcntl.flock, fcntl.lockf and the deprecated posixfile module,
  14. the API is identical across both Unix (including Linux and Mac) and
  15. Windows platforms. The lock mechanism relies on the atomic nature of
  16. the link (on Unix) and mkdir (on Windows) system calls.
  17. Version 0.8 fixes several bugs relating to threads and test reorganization.
  18. Platform: UNKNOWN
  19. Classifier: Development Status :: 4 - Beta
  20. Classifier: Intended Audience :: Developers
  21. Classifier: License :: OSI Approved :: MIT License
  22. Classifier: Operating System :: MacOS
  23. Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000
  24. Classifier: Operating System :: POSIX
  25. Classifier: Programming Language :: Python
  26. Classifier: Programming Language :: Python :: 2.4
  27. Classifier: Programming Language :: Python :: 2.5
  28. Classifier: Programming Language :: Python :: 2.6
  29. Classifier: Programming Language :: Python :: 2.7
  30. Classifier: Programming Language :: Python :: 3.0
  31. Classifier: Topic :: Software Development :: Libraries :: Python Modules