Searched refs:from_modules (Results 1 – 7 of 7) sorted by relevance
61 from_modules = parsed.imports[section]["from"]63 from_modules = sorting.sort(65 from_modules,73 for module in from_modules:78 from_modules = star_modules + other_modules84 parsed, config, from_modules, section, remove_imports, import_type88 config.lines_between_types if from_modules and straight_modules else 0242 from_modules: Iterable[str],248 for module in from_modules:
382 def _add_from_imports(self, from_modules, section, section_output, ignore_case): argument383 for module in from_modules:524 from_modules = self.imports[section]['from']525 from_modules = nsorted(from_modules, key=lambda key: self._module_key(key, self.config))529 self._add_from_imports(from_modules, section, section_output, sort_ignore_case)530 if self.config['lines_between_types'] and from_modules and straight_modules:535 if self.config['lines_between_types'] and from_modules and straight_modules:537 self._add_from_imports(from_modules, section, section_output, sort_ignore_case)
422 def _add_from_imports(self, from_modules, section, section_output, ignore_case): argument423 for module in from_modules:593 from_modules = self.imports[section]['from']594 …from_modules = nsorted(from_modules, key=lambda key: self._module_key(key, self.config, section_na…598 self._add_from_imports(from_modules, section, section_output, sort_ignore_case)599 if self.config['lines_between_types'] and from_modules and straight_modules:604 if self.config['lines_between_types'] and from_modules and straight_modules:606 self._add_from_imports(from_modules, section, section_output, sort_ignore_case)
1044 struct rb_root from_modules = RB_ROOT; in compare_proc_modules() local1050 if (read_proc_modules(from, &from_modules)) in compare_proc_modules()1056 from_node = rb_first(&from_modules); in compare_proc_modules()1078 delete_modules(&from_modules); in compare_proc_modules()
101 schema = HybridDSDLSchema().from_modules(modules,355 def from_modules(self, modules, no_dc=False, no_a=False, member in HybridDSDLSchema