shutilwhich-cwdpatch

Patch for shutil.which and shutilwhich that disables search in CWD on Windows.


License
Python-2.0
Install
pip install shutilwhich-cwdpatch==0.0.1

Documentation

shutilwhich-cwdpatch

Patch for shutil.which and shutilwhich that doesn't prepend CWD in search on Windows.

Install

conda install -c defaults -c conda-forge shutilwhich-cwdpatch

or

pip install shutilwhich-cwdpatch

Usage:

Simply import patch submodule before importing shutil.which or shutilwhich to patch them:

import shutilwhich_cwdpatch.patch
from shutil import which

Or use which without patching:

from shutilwhich_cwdpatch import which