From: Eric Snow Date: Sun, 17 Feb 2013 05:23:48 +0000 (-0700) Subject: Fixes a FileFinder docstring to reflect an old change. X-Git-Tag: v3.3.1rc1~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b49962f7e38a3c02db583a306fb717ae2b2b3c5;p=python Fixes a FileFinder docstring to reflect an old change. That change was in 1db6553f3f8c. --- diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 15fe1564f3..7e348a4982 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -1330,8 +1330,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)