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/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 22 | VNode | def | class | __init__ __iter__ accept leave |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 31 | accept | def | function | def accept(self, visitor: TextWriter, *args: Any, **kwargs: Any) -> None:
func = getattr(visitor, f"visit_{self.visitor_name}")
return func(self, *args, **kwargs)
def leave(self, visitor, *args, **kwargs):
func = getattr(visitor, f"leave_{self.visitor_name}")
return func(self, *args, **kwargs)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 33 | func | ref | function | return func(self, *args, **kwargs)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 35 | leave | def | function | def leave(self, visitor, *args, **kwargs):
func = getattr(visitor, f"leave_{self.visitor_name}")
return func(self, *args, **kwargs)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 37 | func | ref | function | return func(self, *args, **kwargs)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 40 | BaseLayout | def | class | __init__ append insert parents add_text |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 53 | add_text | ref | function | self.add_text(child)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 57 | parents | ref | function | assert child not in self.parents()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 66 | parents | def | function | def parents(self) -> List["BaseLayout"]:
"""Return the ancestor nodes."""
assert self.parent is not self
if self.parent is None:
return []
return [self.parent] + self.parent.parents()
def add_text(self, text: str) -> None:
"""Shortcut to add text data."""
self.children.append(Text(text))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 71 | parents | ref | function | return [self.parent] + self.parent.parents()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 73 | add_text | def | function | def add_text(self, text: str) -> None:
"""Shortcut to add text data."""
self.children.append(Text(text))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 75 | Text | ref | function | self.children.append(Text(text))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 81 | Text | def | class | __init__ |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 94 | VerbatimText | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 105 | Section | def | class | __init__ |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 125 | Paragraph | ref | function | self.insert(0, Paragraph([Text(description)]))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 125 | Text | ref | function | self.insert(0, Paragraph([Text(description)]))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 127 | Title | ref | function | self.insert(0, Title(children=(title,)))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 131 | EvaluationSection | def | class | __init__ |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 136 | Paragraph | ref | function | title = Paragraph()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 137 | Text | ref | function | title.append(Text("-" * len(message)))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 139 | Paragraph | ref | function | message_body = Paragraph()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 140 | Text | ref | function | message_body.append(Text(message))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 144 | Title | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 154 | Paragraph | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/nodes.py | pylint/reporters/ureports/nodes.py | 164 | Table | def | class | __init__ |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 33 | TextWriter | def | class | __init__ visit_section visit_evaluationsection visit_title visit_paragraph visit_table default_table visit_verbatimtext visit_text |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 42 | visit_section | def | function | def visit_section(self, layout: "Section") -> None:
"""Display a section as text."""
self.section += 1
self.writeln()
self.format_children(layout)
self.section -= 1
self.writeln()
def visit_evaluationsection(self, layout: "EvaluationSection") -> None:
"""Display an evaluation section as a text."""
self.section += 1
self.format_children(layout)
self.section -= 1
self.writeln()
def visit_title(self, layout: "Title") -> None:
title = "".join(list(self.compute_content(layout)))
self.writeln(title)
try:
self.writeln(TITLE_UNDERLINES[self.section] * len(title))
except IndexError:
print("FIXME TITLE TOO DEEP. TURNING TITLE INTO TEXT")
def visit_paragraph(self, layout: "Paragraph") -> None:
"""Enter a paragraph."""
self.format_children(layout)
self.writeln()
def visit_table(self, layout: "Table") -> None:
"""Display a table as text."""
table_content = self.get_table_content(layout)
# get columns width
cols_width = [0] * len(table_content[0])
for row in table_content:
for index, col in enumerate(row):
cols_width[index] = max(cols_width[index], len(col))
self.default_table(layout, table_content, cols_width)
self.writeln()
def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 45 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 46 | format_children | ref | function | self.format_children(layout)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 48 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 50 | visit_evaluationsection | def | function | def visit_evaluationsection(self, layout: "EvaluationSection") -> None:
"""Display an evaluation section as a text."""
self.section += 1
self.format_children(layout)
self.section -= 1
self.writeln()
def visit_title(self, layout: "Title") -> None:
title = "".join(list(self.compute_content(layout)))
self.writeln(title)
try:
self.writeln(TITLE_UNDERLINES[self.section] * len(title))
except IndexError:
print("FIXME TITLE TOO DEEP. TURNING TITLE INTO TEXT")
def visit_paragraph(self, layout: "Paragraph") -> None:
"""Enter a paragraph."""
self.format_children(layout)
self.writeln()
def visit_table(self, layout: "Table") -> None:
"""Display a table as text."""
table_content = self.get_table_content(layout)
# get columns width
cols_width = [0] * len(table_content[0])
for row in table_content:
for index, col in enumerate(row):
cols_width[index] = max(cols_width[index], len(col))
self.default_table(layout, table_content, cols_width)
self.writeln()
def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 53 | format_children | ref | function | self.format_children(layout)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 55 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 57 | visit_title | def | function | def visit_title(self, layout: "Title") -> None:
title = "".join(list(self.compute_content(layout)))
self.writeln(title)
try:
self.writeln(TITLE_UNDERLINES[self.section] * len(title))
except IndexError:
print("FIXME TITLE TOO DEEP. TURNING TITLE INTO TEXT")
def visit_paragraph(self, layout: "Paragraph") -> None:
"""Enter a paragraph."""
self.format_children(layout)
self.writeln()
def visit_table(self, layout: "Table") -> None:
"""Display a table as text."""
table_content = self.get_table_content(layout)
# get columns width
cols_width = [0] * len(table_content[0])
for row in table_content:
for index, col in enumerate(row):
cols_width[index] = max(cols_width[index], len(col))
self.default_table(layout, table_content, cols_width)
self.writeln()
def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 58 | compute_content | ref | function | title = "".join(list(self.compute_content(layout)))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 59 | writeln | ref | function | self.writeln(title)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 61 | writeln | ref | function | self.writeln(TITLE_UNDERLINES[self.section] * len(title))
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 65 | visit_paragraph | def | function | def visit_paragraph(self, layout: "Paragraph") -> None:
"""Enter a paragraph."""
self.format_children(layout)
self.writeln()
def visit_table(self, layout: "Table") -> None:
"""Display a table as text."""
table_content = self.get_table_content(layout)
# get columns width
cols_width = [0] * len(table_content[0])
for row in table_content:
for index, col in enumerate(row):
cols_width[index] = max(cols_width[index], len(col))
self.default_table(layout, table_content, cols_width)
self.writeln()
def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 67 | format_children | ref | function | self.format_children(layout)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 68 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 70 | visit_table | def | function | def visit_table(self, layout: "Table") -> None:
"""Display a table as text."""
table_content = self.get_table_content(layout)
# get columns width
cols_width = [0] * len(table_content[0])
for row in table_content:
for index, col in enumerate(row):
cols_width[index] = max(cols_width[index], len(col))
self.default_table(layout, table_content, cols_width)
self.writeln()
def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 72 | get_table_content | ref | function | table_content = self.get_table_content(layout)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 78 | default_table | ref | function | self.default_table(layout, table_content, cols_width)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 79 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 81 | default_table | def | function | def default_table(
self, layout: "Table", table_content: List[List[str]], cols_width: List[int]
) -> None:
"""Format a table."""
cols_width = [size + 1 for size in cols_width]
format_strings = " ".join(["%%-%ss"] * len(cols_width))
format_strings %= tuple(cols_width)
table_linesep = "\n+" + "+".join("-" * w for w in cols_width) + "+\n"
headsep = "\n+" + "+".join("=" * w for w in cols_width) + "+\n"
self.write(table_linesep)
split_strings = format_strings.split(" ")
for index, line in enumerate(table_content):
self.write("|")
for line_index, at_index in enumerate(line):
self.write(split_strings[line_index] % at_index)
self.write("|")
if index == 0 and layout.rheaders:
self.write(headsep)
else:
self.write(table_linesep)
def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 92 | write | ref | function | self.write(table_linesep)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 95 | write | ref | function | self.write("|")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 97 | write | ref | function | self.write(split_strings[line_index] % at_index)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 98 | write | ref | function | self.write("|")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 100 | write | ref | function | self.write(headsep)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 102 | write | ref | function | self.write(table_linesep)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 104 | visit_verbatimtext | def | function | def visit_verbatimtext(self, layout: "VerbatimText") -> None:
"""Display a verbatim layout as text (so difficult ;)."""
self.writeln("::\n")
for line in layout.data.splitlines():
self.writeln(" " + line)
self.writeln()
def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 106 | writeln | ref | function | self.writeln("::\n")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 108 | writeln | ref | function | self.writeln(" " + line)
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 109 | writeln | ref | function | self.writeln()
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 111 | visit_text | def | function | def visit_text(self, layout: "Text") -> None:
"""Add some text."""
self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/reporters/ureports/text_writer.py | pylint/reporters/ureports/text_writer.py | 113 | write | ref | function | self.write(f"{layout.data}")
|
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | 13 | FileItem | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | 27 | ModuleDescriptionDict | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | 37 | ErrorDescriptionDict | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | 45 | MessageLocationTuple | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | 58 | ManagedMessage | def | class | |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | sys | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | typing | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | NamedTuple | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | Optional | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | Union | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | sys | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | version_info | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | typing | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | Literal | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | TypedDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | typing_extensions | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | Literal | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | TypedDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | FileItem | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | NamedTuple | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | name | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | filepath | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | modpath | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | ModuleDescriptionDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | TypedDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | path | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | name | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | isarg | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | bool | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | basepath | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | basename | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | str | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | ErrorDescriptionDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | TypedDict | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | key | ref | function | none |
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/typing.py | pylint/typing.py | -1 | Literal | ref | function | none |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.