diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-15 09:50:33 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-15 09:50:33 -0400 |
commit | 5cbc6c70851acaa617a581c977aa0a55e2391ef7 (patch) | |
tree | 172034b0c1794d034eb9082e97443095de421b65 /pkg_resources.py | |
parent | 06c0f3f41296ab29b626b3c7970f7bfa9e159439 (diff) | |
download | python-setuptools-git-5.7.tar.gz |
Use MemoizedZipManifests for all operations. Fixes #240.5.7
Diffstat (limited to 'pkg_resources.py')
-rw-r--r-- | pkg_resources.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 11debf65..ee2c553b 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -1605,11 +1605,7 @@ class ZipProvider(EggProvider): """Resource support for zips and eggs""" eagers = None - _zip_manifests = ( - MemoizedZipManifests() - if os.environ.get('PKG_RESOURCES_CACHE_ZIP_MANIFESTS') else - ZipManifests() - ) + _zip_manifests = MemoizedZipManifests() def __init__(self, module): EggProvider.__init__(self, module) |