don't bother keeping a set we'll never use
This commit is contained in:
parent
23bba4ca39
commit
2a481e58ff
|
@ -842,7 +842,8 @@ class _FileFinder:
|
||||||
# We store two cached versions, to handle runtime changes of the
|
# We store two cached versions, to handle runtime changes of the
|
||||||
# PYTHONCASEOK environment variable.
|
# PYTHONCASEOK environment variable.
|
||||||
self._path_cache = set(contents)
|
self._path_cache = set(contents)
|
||||||
self._relaxed_path_cache = set(fn.lower() for fn in contents)
|
if sys.platform.startswith(CASE_INSENSITIVE_PLATFORMS):
|
||||||
|
self._relaxed_path_cache = set(fn.lower() for fn in contents)
|
||||||
|
|
||||||
|
|
||||||
class _SourceFinderDetails:
|
class _SourceFinderDetails:
|
||||||
|
|
Loading…
Reference in New Issue