Kaydet (Commit) 91343075 authored tarafından Tim Peters's avatar Tim Peters

Whitespace normalization.

üst 3075e16c
...@@ -71,7 +71,7 @@ def simplegeneric(func): ...@@ -71,7 +71,7 @@ def simplegeneric(func):
def walk_packages(path=None, prefix='', onerror=None): def walk_packages(path=None, prefix='', onerror=None):
"""Yields (module_loader, name, ispkg) for all modules recursively """Yields (module_loader, name, ispkg) for all modules recursively
on path, or, if path is None, all accessible modules. on path, or, if path is None, all accessible modules.
'path' should be either None or a list of paths to look for 'path' should be either None or a list of paths to look for
modules in. modules in.
...@@ -81,7 +81,7 @@ def walk_packages(path=None, prefix='', onerror=None): ...@@ -81,7 +81,7 @@ def walk_packages(path=None, prefix='', onerror=None):
Note that this function must import all *packages* (NOT all Note that this function must import all *packages* (NOT all
modules!) on the given path, in order to access the __path__ modules!) on the given path, in order to access the __path__
attribute to find submodules. attribute to find submodules.
'onerror' is a function which gets called with one argument (the 'onerror' is a function which gets called with one argument (the
name of the package which was being imported) if an ImportError name of the package which was being imported) if an ImportError
occurs trying to import a package. By default the ImportError is occurs trying to import a package. By default the ImportError is
...@@ -126,7 +126,7 @@ def iter_modules(path=None, prefix=''): ...@@ -126,7 +126,7 @@ def iter_modules(path=None, prefix=''):
'prefix' is a string to output on the front of every module name 'prefix' is a string to output on the front of every module name
on output. on output.
""" """
if path is None: if path is None:
importers = iter_importers() importers = iter_importers()
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment