]> granicus.if.org Git - python/commitdiff
Add some comments.
authorBrett Cannon <brett@python.org>
Sat, 14 Apr 2012 22:37:07 +0000 (18:37 -0400)
committerBrett Cannon <brett@python.org>
Sat, 14 Apr 2012 22:37:07 +0000 (18:37 -0400)
Lib/importlib/_bootstrap.py

index 12b42190b74464dfdf3e7a6a24b56a9f0a1cf20f..2b5c949eba890f1131efff8bb2ee6d0b8f40fd00 100644 (file)
@@ -805,6 +805,7 @@ class _FileFinder:
         else:
             cache = self._path_cache
             cache_module = tail_module
+        # Check if the module is the name of a directory (and thus a package).
         if cache_module in cache:
             base_path = _path_join(self.path, tail_module)
             if _path_isdir(base_path):
@@ -816,6 +817,7 @@ class _FileFinder:
                 else:
                     msg = "Not importing directory {}: missing __init__"
                     _warnings.warn(msg.format(base_path), ImportWarning)
+        # Check for a file w/ a proper suffix exists.
         for suffix, loader in self.modules:
             if cache_module + suffix in cache:
                 full_path = _path_join(self.path, tail_module + suffix)