/
niceSOFT
/
python3-pathspec
Обзор
Документация
Войти
/
niceSOFT
/
python3-pathspec
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pathspec/patterns/gitignore/__init__.py
17 строк
422 B
Caleb Burns
Misc
24 дек 2025, 07:42
Не верифицирован
24 дек 2025, 07:42
209840b
Код
Авторство
О чём код?
""" The *pathspec.patterns.gitignore* package provides the *gitignore* implementations. The following classes are imported and made available from this package: - :class:`pathspec.patterns.gitignore.base.GitIgnorePatternError` """ # Expose the GitIgnorePatternError for convenience. from .base import ( GitIgnorePatternError) # Declare imports as part of the public interface. __all__ = [ 'GitIgnorePatternError', ]