/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.11
helpers/python
14 строк
331 B
Ville Skyttä
pre-commit: run most python checks on helpers/python too
17 мар 2020, 22:43
17 мар 2020, 22:43
5ed40e0
Код
Авторство
О чём код?
# -*- python -*- import pkgutil import sys # walk_packages() is much slower than iter_modules(), use it only when # completing something with a dot in it. if len(sys.argv) > 1 and "." in sys.argv[1]: walker = pkgutil.walk_packages else: walker = pkgutil.iter_modules for mod in walker(): print(mod[1]) # noqa: E211