Lines Matching full:inherits
116 inheritlist = args.inherits.split(',') if args.inherits else []
123 …, show_filenames, show_recipes_only, show_multi_provider_only, selected_layer, bare, inherits, mc): argument
124 if inherits:
126 for classname in inherits:
203 if inherits:
205 recipe_inherits = self.tinfoil.cooker_data.inherits.get(preffile, [])
212 elif classname in inherits:
214 if matchcount != len(inherits):
411 if f in self.tinfoil.cooker_data.inherits:
412 inherits = self.tinfoil.cooker_data.inherits[f]
413 for cls in inherits:
414 # The inherits' format is [classes/cls, /path/to/classes/cls]
427 logger.plain("%s inherits %s" % (f_short, cls))
485 return (self.inherit_re.match(line), "inherits")
519 …parser_show_recipes.add_argument('-i', '--inherits', help='only list recipes that inherit the name…