MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_line

Method get_line

_pydevd_bundle/pydevd_code_to_source.py:92–96  ·  view source on GitHub ↗
(self, line)

Source from the content-addressed store, hash-verified

90 self.all_tokens = set()
91
92 def get_line(self, line):
93 lst = self.line_to_contents.get(line)
94 if lst is None:
95 lst = self.line_to_contents[line] = []
96 return lst
97
98 def indent(self, line):
99 self.get_line(line).append(INDENT_MARKER)

Callers 4

indentMethod · 0.95
dedentMethod · 0.95
writeMethod · 0.95
merge_codeMethod · 0.80

Calls 1

getMethod · 0.45

Tested by

no test coverage detected