summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-06-16 23:09:46 (GMT)
committerBrett Cannon <brett@python.org>2013-06-16 23:09:46 (GMT)
commit390f6c1bf7b539161b9f44f2b657a2aa422fdc95 (patch)
tree005da99b691f8b52e7d2487eea9cc49439a17432 /Lib
parentf24fecd4ac9050799d02a8354b7acfa12b65b1d3 (diff)
parenta269d821a11f2f84e6a211818ac1fdd76e0ab647 (diff)
downloadcpython-390f6c1bf7b539161b9f44f2b657a2aa422fdc95.zip
cpython-390f6c1bf7b539161b9f44f2b657a2aa422fdc95.tar.gz
cpython-390f6c1bf7b539161b9f44f2b657a2aa422fdc95.tar.bz2
Merge doc/argument name fix
Diffstat (limited to 'Lib')
-rw-r--r--Lib/importlib/_bootstrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 37fe083..67304a3 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -1361,12 +1361,12 @@ class FileFinder:
"""
- def __init__(self, path, *details):
+ def __init__(self, path, *loader_details):
"""Initialize with the path to search on and a variable number of
2-tuples containing the loader and the file suffixes the loader
recognizes."""
loaders = []
- for loader, suffixes in details:
+ for loader, suffixes in loader_details:
loaders.extend((suffix, loader) for suffix in suffixes)
self._loaders = loaders
# Base (directory) path