summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-04-18 19:25:50 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-04-18 19:25:50 (GMT)
commit2a481e58ffe7d7719b856e2778751521d266d33a (patch)
treef0996a640a269035ed7f5bd50873cfc1217ec957 /Lib/importlib/_bootstrap.py
parent23bba4ca398ff2e096413e3bbaf9a6cdaa1d1846 (diff)
downloadcpython-2a481e58ffe7d7719b856e2778751521d266d33a.zip
cpython-2a481e58ffe7d7719b856e2778751521d266d33a.tar.gz
cpython-2a481e58ffe7d7719b856e2778751521d266d33a.tar.bz2
don't bother keeping a set we'll never use
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r--Lib/importlib/_bootstrap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 142461a..6478db5 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -842,7 +842,8 @@ class _FileFinder:
# We store two cached versions, to handle runtime changes of the
# PYTHONCASEOK environment variable.
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: