(path=None, prefix='', onerror=None)
| 390 | """ |
| 391 | default_path = path or [os.path.dirname(__file__)] |
| 392 | def wrapper(path=None, prefix='', onerror=None): |
| 393 | return walk_packages(path or default_path, prefix, onerror) |
| 394 | return wrapper |
| 395 | |
| 396 | @contextlib.contextmanager |
nothing calls this directly
no test coverage detected