MCPcopy Index your code
hub / github.com/python/cpython / _dedented_lines

Method _dedented_lines

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

Source from the content-addressed store, hash-verified

380
381 @property
382 def _dedented_lines(self):
383 # Returns _original_lines, but dedented
384 self._set_lines()
385 if self._lines_dedented is None and self._lines is not None:
386 self._lines_dedented = textwrap.dedent(self._lines)
387 return self._lines_dedented
388
389 @property
390 def line(self):

Callers

nothing calls this directly

Calls 2

_set_linesMethod · 0.95
dedentMethod · 0.45

Tested by

no test coverage detected