MCPcopy Index your code
hub / github.com/RustPython/RustPython / _dedented_lines

Method _dedented_lines

Lib/traceback.py:366–371  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

364
365 @property
366 def _dedented_lines(self):
367 # Returns _original_lines, but dedented
368 self._set_lines()
369 if self._lines_dedented is None and self._lines is not None:
370 self._lines_dedented = textwrap.dedent(self._lines)
371 return self._lines_dedented
372
373 @property
374 def line(self):

Callers

nothing calls this directly

Calls 2

_set_linesMethod · 0.95
dedentMethod · 0.80

Tested by

no test coverage detected