Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pathspec/patterns/gitignore/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1""" 

2The *pathspec.patterns.gitignore* package provides the *gitignore* 

3implementations. 

4 

5The following classes are imported and made available from this package: 

6 

7- :class:`pathspec.patterns.gitignore.base.GitIgnorePatternError` 

8""" 

9 

10# Expose the GitIgnorePatternError for convenience. 

11from .base import ( 

12 GitIgnorePatternError) 

13 

14# Declare imports as part of the public interface. 

15__all__ = [ 

16 'GitIgnorePatternError', 

17]