(self, entry: TracebackEntry)
| 715 | return 4 + (len(s) - len(s.lstrip())) |
| 716 | |
| 717 | def _getentrysource(self, entry: TracebackEntry) -> Optional["Source"]: |
| 718 | source = entry.getsource(self.astcache) |
| 719 | if source is not None: |
| 720 | source = source.deindent() |
| 721 | return source |
| 722 | |
| 723 | def repr_args(self, entry: TracebackEntry) -> Optional["ReprFuncArgs"]: |
| 724 | if self.funcargs: |