12345678910111213141516171819202122232425 |
- Metadata-Version: 2.1
- Name: backports.shutil_which
- Version: 3.5.2
- Summary: Backport of shutil.which from Python 3.3
- Home-page: https://github.com/minrk/backports.shutil_which
- Author: Min RK
- Author-email: benjaminrk@gmail.com
- License: Python Software Foundation License
- Platform: UNKNOWN
- Classifier: Development Status :: 5 - Production/Stable
- Classifier: Intended Audience :: Developers
- Classifier: License :: OSI Approved :: Python Software Foundation License
- Classifier: Programming Language :: Python :: 2.6
- Classifier: Programming Language :: Python :: 2.7
- Classifier: Programming Language :: Python :: 3
- Use Python 3 shutil.which on Python 2::
- try:
- from shutil import which
- except ImportError:
- from backports.shutil_which import which
|