D | componentinfo.py | 30 def __init__(self, subpath, name, dependencies, parent): argument 31 if not subpath.startswith('/'): 32 raise ValueError,"invalid subpath: %r" % subpath 33 self.subpath = subpath 80 def parse(subpath, items): argument 82 return GroupComponentInfo(subpath, **kwargs) 84 def __init__(self, subpath, name, parent): argument 85 ComponentInfo.__init__(self, subpath, name, [], parent) 98 def parse(subpath, items): argument 104 return LibraryComponentInfo(subpath, **kwargs) [all …]
|