File size: 302 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
The *pathspec.patterns* package contains the pattern matching
implementations.
"""
# Load pattern implementations.
from . import gitwildmatch
# DEPRECATED: Expose the `GitWildMatchPattern` class in this module for
# backward compatibility with v0.5.
from .gitwildmatch import GitWildMatchPattern
|