METADATA 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Metadata-Version: 2.1
  2. Name: subprocess32
  3. Version: 3.5.4
  4. Summary: A backport of the subprocess module from Python 3 for use on 2.x.
  5. Home-page: https://github.com/google/python-subprocess32
  6. Maintainer: Gregory P. Smith
  7. Maintainer-email: greg@krypto.org
  8. License: PSF license
  9. Platform: UNKNOWN
  10. Classifier: Intended Audience :: Developers
  11. Classifier: Topic :: Software Development :: Libraries
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: License :: OSI Approved :: Python Software Foundation License
  14. Classifier: Operating System :: MacOS
  15. Classifier: Operating System :: MacOS :: MacOS X
  16. Classifier: Operating System :: POSIX
  17. Classifier: Operating System :: POSIX :: BSD
  18. Classifier: Operating System :: POSIX :: Linux
  19. Classifier: Operating System :: POSIX :: SunOS/Solaris
  20. Classifier: Programming Language :: Python :: 2.6
  21. Classifier: Programming Language :: Python :: 2.7
  22. Classifier: Programming Language :: Python :: 2 :: Only
  23. Classifier: Programming Language :: Python :: Implementation :: CPython
  24. Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
  25. This is a backport of the subprocess standard library module from
  26. Python 3.2 - 3.5 for use on Python 2.
  27. It includes bugfixes and some new features. On POSIX systems it is
  28. guaranteed to be reliable when used in threaded applications.
  29. It includes timeout support from Python 3.3 and the run() API from 3.5
  30. but otherwise matches 3.2's API.
  31. It has not been tested by the author on Windows.
  32. On Python 3, it merely redirects the subprocess32 name to subprocess.