summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2013-02-17 05:25:31 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2013-02-17 05:25:31 (GMT)
commit5df9f82547dd9b567ffe2976f8235987a58534a7 (patch)
tree47ab3d00607160286194bf19e9c78bd3a41ca2bc /Lib
parent9d05c8c0e0b0f3ebd19d7add842d2db8269f7d75 (diff)
parent5b49962f7e38a3c02db583a306fb717ae2b2b3c5 (diff)
downloadcpython-5df9f82547dd9b567ffe2976f8235987a58534a7.zip
cpython-5df9f82547dd9b567ffe2976f8235987a58534a7.tar.gz
cpython-5df9f82547dd9b567ffe2976f8235987a58534a7.tar.bz2
Merge from 3.3
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 a75ddfb..edbc704 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -1352,8 +1352,8 @@ class FileFinder:
def __init__(self, path, *details):
"""Initialize with the path to search on and a variable number of
- 3-tuples containing the loader, file suffixes the loader recognizes,
- and a boolean of whether the loader handles packages."""
+ 2-tuples containing the loader and the file suffixes the loader
+ recognizes."""
loaders = []
for loader, suffixes in details:
loaders.extend((suffix, loader) for suffix in suffixes)