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