Revert "Merge pull request #8227 from encukou/defensive-get_source"
This reverts commit67af623d9e
, reversing changes made toaead41e449
.
This commit is contained in:
parent
9ad726a9a0
commit
77235e2759
|
@ -725,11 +725,11 @@ class FormattedExcinfo:
|
|||
) -> List[str]:
|
||||
"""Return formatted and marked up source lines."""
|
||||
lines = []
|
||||
if source is not None and line_index < 0:
|
||||
line_index += len(source.lines)
|
||||
if source is None or line_index >= len(source.lines) or line_index < 0:
|
||||
if source is None or line_index >= len(source.lines):
|
||||
source = Source("???")
|
||||
line_index = 0
|
||||
if line_index < 0:
|
||||
line_index += len(source)
|
||||
space_prefix = " "
|
||||
if short:
|
||||
lines.append(space_prefix + source.lines[line_index].strip())
|
||||
|
|
Loading…
Reference in New Issue