__init__.py 302 B

1234567891011
  1. """
  2. The *pathspec.patterns* package contains the pattern matching
  3. implementations.
  4. """
  5. # Load pattern implementations.
  6. from . import gitwildmatch
  7. # DEPRECATED: Expose the `GitWildMatchPattern` class in this module for
  8. # backward compatibility with v0.5.
  9. from .gitwildmatch import GitWildMatchPattern