fname stringlengths 63 176 | rel_fname stringclasses 706
values | line int64 -1 4.5k | name stringlengths 1 81 | kind stringclasses 2
values | category stringclasses 2
values | info stringlengths 0 77.9k ⌀ |
|---|---|---|---|---|---|---|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 678 | add_message | ref | function | self.add_message(
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 682 | check_line_length | def | function | def check_line_length(self, line: str, i: int, checker_off: bool) -> None:
"""Check that the line length is less than the authorized value."""
max_chars = self.config.max_line_length
ignore_long_line = self.config.ignore_long_lines
line = line.rstrip()
if len(line) > max_char... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 687 | search | ref | function | if len(line) > max_chars and not ignore_long_line.search(line):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 689 | add_ignored_message | ref | function | self.linter.add_ignored_message("line-too-long", i)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 691 | add_message | ref | function | self.add_message("line-too-long", line=i, args=(len(line), max_chars))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 694 | remove_pylint_option_from_lines | def | function | def remove_pylint_option_from_lines(options_pattern_obj) -> str:
"""Remove the `# pylint ...` pattern from lines."""
lines = options_pattern_obj.string
purged_lines = (
lines[: options_pattern_obj.start(1)].rstrip()
+ lines[options_pattern_obj.end(1) :]
)
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 698 | start | ref | function | lines[: options_pattern_obj.start(1)].rstrip()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 699 | end | ref | function | + lines[options_pattern_obj.end(1) :]
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 704 | is_line_length_check_activated | def | function | def is_line_length_check_activated(pylint_pattern_match_object) -> bool:
"""Return true if the line length check is activated."""
try:
for pragma in parse_pragma(pylint_pattern_match_object.group(2)):
if pragma.action == "disable" and "line-too-long" in pragma.messages:
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 707 | parse_pragma | ref | function | for pragma in parse_pragma(pylint_pattern_match_object.group(2)):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 716 | specific_splitlines | def | function | def specific_splitlines(lines: str) -> List[str]:
"""Split lines according to universal newlines except those in a specific sets."""
unsplit_ends = {
"\v",
"\x0b",
"\f",
"\x0c",
"\x1c",
"\x1d",
"\x1e",
"\... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 740 | check_lines | def | function | def check_lines(self, lines: str, lineno: int) -> None:
"""Check lines have :
- a final newline
- no trailing whitespace
- less than a maximum number of characters
"""
# we're first going to do a rough check whether any lines in this set
# go over the line lim... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 756 | specific_splitlines | ref | function | split_lines = self.specific_splitlines(lines)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 759 | check_line_ending | ref | function | self.check_line_ending(line, lineno + offset)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 777 | search | ref | function | mobj = OPTION_PO.search(lines)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 780 | is_line_length_check_activated | ref | function | if not self.is_line_length_check_activated(mobj):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 783 | remove_pylint_option_from_lines | ref | function | lines = self.remove_pylint_option_from_lines(mobj)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 786 | specific_splitlines | ref | function | for offset, line in enumerate(self.specific_splitlines(lines)):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 787 | check_line_length | ref | function | self.check_line_length(line, lineno + offset, checker_off)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 789 | check_indent_level | def | function | def check_indent_level(self, string, expected, line_num):
"""Return the indent level of the string."""
indent = self.config.indent_string
if indent == "\\t": # \t is not interpreted in the configuration file
indent = "\t"
level = 0
unit_size = len(indent)
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 807 | add_message | ref | function | self.add_message(
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 814 | register | def | function | def register(linter: "PyLinter") -> None:
linter.register_checker(FormatChecker(linter))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 815 | register_checker | ref | function | linter.register_checker(FormatChecker(linter))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/format.py | pylint/checkers/format.py | 815 | FormatChecker | ref | function | linter.register_checker(FormatChecker(linter))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 78 | _qualified_names | def | function | def _qualified_names(modname):
"""Split the names of the given module into subparts.
For example,
_qualified_names('pylint.checkers.ImportsChecker')
returns
['pylint', 'pylint.checkers', 'pylint.checkers.ImportsChecker']
"""
names = modname.split(".")
return [".".join(names[0 : ... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 90 | _get_first_import | def | function | def _get_first_import(node, context, name, base, level, alias):
"""Return the node where [base.]<name> is imported or None if not found."""
fullname = f"{base}.{name}" if base else name
first = None
found = _False
for first in context.body:
if first is node:
continue
if ... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 99 | scope | ref | function | if first.scope() is node.scope() and first.fromlineno > node.fromlineno:
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 99 | scope | ref | function | if first.scope() is node.scope() and first.fromlineno > node.fromlineno:
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 120 | are_exclusive | ref | function | if found and not astroid.are_exclusive(first, node):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 125 | _ignore_import_failure | def | function | def _ignore_import_failure(node, modname, ignored_modules):
for submodule in _qualified_names(modname):
if submodule in ignored_modules:
return _True
if is_node_in_guarded_import_block(node):
# Ignore import failure if part of guarded import block
# I.e. `sys.version_info` o... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 126 | _qualified_names | ref | function | for submodule in _qualified_names(modname):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 130 | is_node_in_guarded_import_block | ref | function | if is_node_in_guarded_import_block(node):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 135 | node_ignores_exception | ref | function | return node_ignores_exception(node, ImportError)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 141 | _make_tree_defs | def | function | def _make_tree_defs(mod_files_list):
"""Get a list of 2-uple (module, list_of_files_which_import_this_module),
it will return a dictionary to represent this as a tree
"""
tree_defs = {}
for mod, files in mod_files_list:
node = (tree_defs, ())
for prefix in mod.split("."):
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 154 | _repr_tree_defs | def | function | def _repr_tree_defs(data, indent_str=None):
"""Return a string which represents imports as a tree."""
lines = []
nodes_items = data.items()
for i, (mod, (sub, files)) in enumerate(sorted(nodes_items, key=lambda x: x[0])):
files = "" if not files else f"({','.join(sorted(files))})"
if ind... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 170 | _repr_tree_defs | ref | function | lines.append(_repr_tree_defs(sub, sub_indent_str))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 174 | _dependencies_graph | def | function | def _dependencies_graph(filename: str, dep_info: Dict[str, Set[str]]) -> str:
"""Write dependencies as a dot (graphviz) file."""
done = {}
printer = DotBackend(os.path.splitext(os.path.basename(filename))[0], rankdir="LR")
printer.emit('URL="." node[shape="box"]')
for modname, dependencies in sorted... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 177 | DotBackend | ref | function | printer = DotBackend(os.path.splitext(os.path.basename(filename))[0], rankdir="LR")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 177 | splitext | ref | function | printer = DotBackend(os.path.splitext(os.path.basename(filename))[0], rankdir="LR")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 177 | basename | ref | function | printer = DotBackend(os.path.splitext(os.path.basename(filename))[0], rankdir="LR")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 178 | emit | ref | function | printer.emit('URL="." node[shape="box"]')
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 182 | emit_node | ref | function | printer.emit_node(modname)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 186 | emit_node | ref | function | printer.emit_node(depmodname)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 189 | emit_edge | ref | function | printer.emit_edge(modname, depmodname)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 190 | generate | ref | function | return printer.generate(filename)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 193 | _make_graph | def | function | def _make_graph(
filename: str, dep_info: Dict[str, Set[str]], sect: Section, gtype: str
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 199 | _dependencies_graph | ref | function | outputfile = _dependencies_graph(filename, dep_info)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 200 | Paragraph | ref | function | sect.append(Paragraph((f"{gtype}imports graph has been written to {outputfile}",)))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 303 | ImportsChecker | def | class | __init__ _compute_site_packages open _import_graph_without_ignored_edges close deprecated_modules visit_import visit_importfrom leave_module compute_first_non_import_node visit_functiondef _check_misplaced_future _check_same_line_imports _check_position _record_import _is_fallback_import _check_imports_order _get_impor... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 443 | _compute_site_packages | ref | function | self._site_packages = self._compute_site_packages()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 446 | _compute_site_packages | def | function | def _compute_site_packages():
def _normalized_path(path):
return os.path.normcase(os.path.abspath(path))
paths = set()
real_prefix = getattr(sys, "real_prefix", None)
for prefix in filter(None, (real_prefix, sys.prefix)):
path = sysconfig.get_python_lib(prefi... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 447 | _normalized_path | def | function | def _normalized_path(path):
return os.path.normcase(os.path.abspath(path))
paths = set()
real_prefix = getattr(sys, "real_prefix", None)
for prefix in filter(None, (real_prefix, sys.prefix)):
path = sysconfig.get_python_lib(prefix=prefix)
path = _norm... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 448 | normcase | ref | function | return os.path.normcase(os.path.abspath(path))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 448 | abspath | ref | function | return os.path.normcase(os.path.abspath(path))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 454 | _normalized_path | ref | function | path = _normalized_path(path)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 458 | isfile | ref | function | if os.path.isfile("/etc/debian_version"):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 477 | get_global_option | ref | function | self._ignored_modules = get_global_option(self, "ignored-modules", default=[])
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 486 | _import_graph_without_ignored_edges | def | function | def _import_graph_without_ignored_edges(self):
filtered_graph = copy.deepcopy(self.import_graph)
for node in filtered_graph:
filtered_graph[node].difference_update(self._excluded_edges[node])
return filtered_graph
def close(self):
"""Called before visiting project (i... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 494 | is_message_enabled | ref | function | if self.linter.is_message_enabled("cyclic-import"):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 495 | _import_graph_without_ignored_edges | ref | function | graph = self._import_graph_without_ignored_edges()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 497 | get_cycles | ref | function | for cycle in get_cycles(graph, vertices=vertices):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 498 | add_message | ref | function | self.add_message("cyclic-import", args=" -> ".join(cycle))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 500 | deprecated_modules | def | function | def deprecated_modules(self):
"""Callback returning the deprecated modules."""
return self.config.deprecated_modules
@check_messages(*MSGS)
def visit_import(self, node: nodes.Import) -> None:
"""Triggered when an import statement is seen."""
self._check_reimport(node)
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 504 | check_messages | ref | function | @check_messages(*MSGS)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 505 | visit_import | def | function | def visit_import(self, node: nodes.Import) -> None:
"""Triggered when an import statement is seen."""
self._check_reimport(node)
self._check_import_as_rename(node)
self._check_toplevel(node)
names = [name for name, _ in node.names]
if len(names) >= 2:
sel... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 507 | _check_reimport | ref | function | self._check_reimport(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 508 | _check_import_as_rename | ref | function | self._check_import_as_rename(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 509 | _check_toplevel | ref | function | self._check_toplevel(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 513 | add_message | ref | function | self.add_message("multiple-imports", args=", ".join(names), node=node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 516 | check_deprecated_module | ref | function | self.check_deprecated_module(node, name)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 517 | _check_preferred_module | ref | function | self._check_preferred_module(node, name)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 518 | _get_imported_module | ref | function | imported_module = self._get_imported_module(node, name)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 521 | _check_position | ref | function | self._check_position(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 522 | scope | ref | function | if isinstance(node.scope(), nodes.Module):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 523 | _record_import | ref | function | self._record_import(node, imported_module)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 528 | _add_imported_module | ref | function | self._add_imported_module(node, imported_module.name)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 530 | check_messages | ref | function | @check_messages(*MSGS)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 531 | visit_importfrom | def | function | def visit_importfrom(self, node: nodes.ImportFrom) -> None:
"""Triggered when a from statement is seen."""
basename = node.modname
imported_module = self._get_imported_module(node, basename)
self._check_import_as_rename(node)
self._check_misplaced_future(node)
self.c... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 534 | _get_imported_module | ref | function | imported_module = self._get_imported_module(node, basename)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 536 | _check_import_as_rename | ref | function | self._check_import_as_rename(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 537 | _check_misplaced_future | ref | function | self._check_misplaced_future(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 538 | check_deprecated_module | ref | function | self.check_deprecated_module(node, basename)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 539 | _check_preferred_module | ref | function | self._check_preferred_module(node, basename)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 540 | _check_wildcard_imports | ref | function | self._check_wildcard_imports(node, imported_module)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 541 | _check_same_line_imports | ref | function | self._check_same_line_imports(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 542 | _check_reimport | ref | function | self._check_reimport(node, basename=basename, level=node.level)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 543 | _check_toplevel | ref | function | self._check_toplevel(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 547 | _check_position | ref | function | self._check_position(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 548 | scope | ref | function | if isinstance(node.scope(), nodes.Module):
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 549 | _record_import | ref | function | self._record_import(node, imported_module)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 554 | _add_imported_module | ref | function | self._add_imported_module(node, f"{imported_module.name}.{name}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 556 | _add_imported_module | ref | function | self._add_imported_module(node, imported_module.name)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 558 | check_messages | ref | function | @check_messages(*MSGS)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 559 | leave_module | def | function | def leave_module(self, node: nodes.Module) -> None:
# Check imports are grouped by category (standard, 3rd party, local)
std_imports, ext_imports, loc_imports = self._check_imports_order(node)
# Check that imports are grouped by package within a given category
met_import: Set[str] =... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 561 | _check_imports_order | ref | function | std_imports, ext_imports, loc_imports = self._check_imports_order(node)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 568 | is_message_enabled | ref | function | if not self.linter.is_message_enabled(
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 578 | is_node_in_guarded_import_block | ref | function | and is_node_in_guarded_import_block(import_node) is False
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 580 | add_message | ref | function | self.add_message("ungrouped-imports", node=import_node, args=package)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 587 | compute_first_non_import_node | def | function | def compute_first_non_import_node(self, node):
if not self.linter.is_message_enabled("wrong-import-position", node.fromlineno):
return
# if the node does not contain an import instruction, and if it is the
# first node of the module, keep a track of it (all the import positions
... |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/imports.py | pylint/checkers/imports.py | 588 | is_message_enabled | ref | function | if not self.linter.is_message_enabled("wrong-import-position", node.fromlineno):
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.