コード例 #1
0
ファイル: scmutil.py プロジェクト: sandeepprasanna/ODOO
def matchfiles(repo, files):
    return matchmod.exact(repo.root, repo.getcwd(), files)
コード例 #2
0
def matchfiles(repo, files):
    '''Return a matcher that will efficiently match exactly these files.'''
    return matchmod.exact(repo.root, repo.getcwd(), files)
コード例 #3
0
ファイル: scmutil.py プロジェクト: CSCI-362-02-2015/RedTeam
def matchfiles(repo, files, badfn=None):
    '''Return a matcher that will efficiently match exactly these files.'''
    return matchmod.exact(repo.root, repo.getcwd(), files, badfn=badfn)
コード例 #4
0
ファイル: cmdutil.py プロジェクト: yangdy-buji/idea-community
def matchfiles(repo, files):
    return _match.exact(repo.root, repo.getcwd(), files)
コード例 #5
0
def matchfiles(repo, files):
    """Return a matcher that will efficiently match exactly these files."""
    return matchmod.exact(repo.root, repo.getcwd(), files)