Merge pull request #399 from LLNL/bugfix/398-extensions-error
fix for issue 398, added extensions_for in RepoPath
This commit is contained in:
commit
4d239b3038
1 changed files with 5 additions and 0 deletions
|
@ -233,6 +233,11 @@ def providers_for(self, vpkg_spec):
|
|||
return providers
|
||||
|
||||
|
||||
@_autospec
|
||||
def extensions_for(self, extendee_spec):
|
||||
return [p for p in self.all_packages() if p.extends(extendee_spec)]
|
||||
|
||||
|
||||
def find_module(self, fullname, path=None):
|
||||
"""Implements precedence for overlaid namespaces.
|
||||
|
||||
|
|
Loading…
Reference in a new issue