1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
|
"""core.py
The exception hook at the heart of Friendly.
You should not need to use any of the functions defined here;
they are considered to be internal functions, subject to change at any
time. If functions defined in friendly_traceback.__init__.py do not meet your needs,
please file an issue.
"""
import re
import traceback
import types
from typing import List, Optional, Type
from . import debug_helper, info_generic, info_variables, message_parser, tb_data
from .frame_info import FrameInfo
from .ft_gettext import current_lang
from .path_info import path_utils
from .source_cache import cache
from .syntax_errors import analyze_syntax, indentation_error
from .typing_info import _E, Info
try:
import executing # noqa
except ImportError: # pragma: no cover
pass # ignore errors when processed by Sphinx
TracebackData = tb_data.TracebackData
_ = current_lang.translate
# ====================
# The following is an example of a formatted traceback, with
# some parts identified with (partial) names used below
#
# Python exception: [header]
# [message]
# UnboundLocalError: local variable 'a' referenced before assignment
# [generic]
# In Python, variables that are used inside a function are known as
# local variables. Before they are used, they must be assigned a value.
# A variable that is used before it is assigned a value is assumed to
# be defined outside that function; it is known as a 'global'
# (or sometimes 'nonlocal') variable. You cannot assign a value to such
# a global variable inside a function without first indicating to
# Python that this is a global variable, otherwise you will see
# an UnboundLocalError.
# [cause_header and cause]
# Likely cause:
# The variable that appears to cause the problem is 'abc'.
# Try inserting the statement
# global abc
# as the first line inside your function.
#
# [last_call_ ...]
# Execution stopped on line 14 of file 'C:\Users...\test_unbound_local_error.py'.
# 12:
# 13: try:
# -->14: inner()
#
# inner: <function test_unbound_local_error.<location... >
# [exception_raised_ ...]
# Exception raised on line 11 of file 'C:\Users\...\test_unbound_local_error.py'.
# 9: def inner():
# 10: b = 2
# -->11: a = a + b
#
# [6]
# b: 2
class FriendlyTraceback:
"""Main class for creating a friendly traceback.
All the information available to the end user is stored in a
dict called "info". The various keys of that dict are documented
in the docstrings of the relevant methods.
To get all possible attributes set up, one needs to call
compile_info() after initializing this class. This is done
to allow third-party users to selectively call only one of
* assign_cause()
* assign_generic()
* assign_location()
if they so wish.
Various functions are available when using a friendly console,
which can show part of the information compile here.
Among those:
* where() shows the result of assign_location()
* why() shows the cause, as compiled by assign_cause()
* hint() is a shorter version of why(), sometimes available.
* what() shows the information compiled by assign_generic()
"""
info: Info
def __init__(self, etype: Type[_E], value: _E, tb: types.TracebackType) -> None:
"""The basic argument are those generated after a traceback
and obtained via::
etype, value, tb = sys.exc_info()
The "header" key for the info dict is assigned here."""
from .config import session
try:
self.tb_data = tb_data.TracebackData(etype, value, tb)
except Exception as e: # pragma: no cover
debug_helper.log("Uncaught exception in TracebackData:")
if debug_helper.DEBUG:
raise
debug_helper.handle_internal_error(str(e))
raise SystemExit
self.tb = tb
self.suppressed = [" ... " + _("More lines not shown.") + " ..."]
self.info = {
"header": _("Python exception:"), # Used by HackInScience
"lang": session.lang,
}
self.message = self.assign_message(etype, value) # language independent
self.assign_tracebacks()
# include the value for debugging purpose in an interactive session ...
self.tb_data.exception_instance = value
# ... and for extracting the notes information
self.add_exception_note()
def assign_message(self, etype, value) -> str:
"""Assigns the error message, as the attribute ``message``
which is something like::
NameError: name 'a' is not defined
"""
exc_name = etype.__name__
message = value.msg if hasattr(value, "msg") else self.tb_data.full_message
self.info["message"] = f"{exc_name}: {message}\n"
return self.info["message"]
def compile_info(self) -> None:
"""Compile all info that was not set in __init__."""
self.assign_generic()
# For SyntaxError, assigning the cause may result in better location
# information; so we need to do this first.
self.assign_cause()
self.assign_location()
# removing null values; mypy cannot figure out the type correctly here
to_remove = [key for key in self.info if not self.info[key]] # type: ignore
for key in to_remove:
del self.info[key]
def recompile_info(self) -> None:
"""This is useful if we need to redisplay some information in a
different language than what was originally used.
"""
from .config import session
self.info["header"] = _("Python exception:")
self.info["lang"] = session.lang
self.add_exception_note()
self.assign_tracebacks()
self.compile_info()
def add_exception_note(self):
"""Adding information from exception notes; new to Python 3.11"""
if not hasattr(self.tb_data.exception_instance, "__notes__"):
return
notes = self.tb_data.exception_instance.__notes__
if len(notes) == 0:
return
if len(notes) == 1:
self.info["exception_notes_intro"] = _(
"The exception includes the following note:\n"
)
else:
self.info["exception_notes_intro"] = _(
"The exception includes the following notes:\n"
)
self.info["exception_notes"] = notes
def assign_cause(self) -> None:
"""Determine the cause of an exception, which is what is returned
by ``why()``.
"""
try:
if self.tb_data.filename == "<unknown>" or (
self.tb_data.filename == "<string>"
and self.tb_data.value.lineno != 1
and not issubclass(self.tb_data.exception_type, SyntaxError)
):
return
except Exception:
return
if tb_data.STR_FAILED in self.message:
self.info["cause"] = _(
"Warning: improperly formed exception.\n"
"I suspect that a custom exception has been raised\n"
"with a non-string value used as a message.\n"
"This can occur if a `__repr__` or a `__str__` method\n"
"raises an exception or does not return a string.\n"
)
elif issubclass(self.tb_data.exception_type, SyntaxError):
self.set_cause_syntax()
else:
self.set_cause_runtime()
def set_cause_runtime(self) -> None:
"""For exceptions other than SyntaxError and subclasses.
Sets the value of the following attributes:
* cause_header
* cause
and possibly:
* suggest
the latter being the "hint" appended to the friendly traceback.
"""
etype = self.tb_data.exception_type
message = self.tb_data.message
cause = message_parser.get_likely_cause(etype, message, self.tb_data) # [3]
self.info.update(**cause)
def set_cause_syntax(self) -> None:
"""For SyntaxError and subclasses. Sets the value of the following
attributes:
* cause_header
* cause
and possibly:
* suggest
the latter being the "hint" appended to the friendly traceback.
"""
etype = self.tb_data.exception_type
value = self.tb_data.value
if self.tb_data.filename == "<unknown>":
return
if "encoding problem" in str(self.tb_data.value):
self.info["cause"] = _("The encoding of the file was not valid.\n")
return
if etype.__name__ == "IndentationError":
self.info["cause"] = indentation_error.set_cause_indentation_error(
value, self.tb_data.statement
)
return
if etype.__name__ == "TabError":
return
cause = analyze_syntax.set_cause_syntax(value, self.tb_data)
self.info.update(**cause)
def assign_generic(self) -> None:
"""Assigns the generic information about a given error. This is
the answer to ``what()`` as in "What is a NameError?"
Sets the value of the following attribute:
* generic
"""
self.info["generic"] = info_generic.get_generic_explanation(
self.tb_data.exception_type
)
def assign_location(self) -> None:
"""This sets the values of the answers to 'where()', that is
the information about the location of the exception.
To determine which attributes will be set, consult the docstring
of the following methods.
For SyntaxError and subclasses: self.locate_parsing_error()
For other types of exceptions, self.locate_exception_raised(),
and possibly self.locate_last_call().
"""
if issubclass(self.tb_data.exception_type, SyntaxError):
self.locate_parsing_error()
return
records = self.tb_data.records
if not records: # pragma: no cover
if issubclass(self.tb_data.exception_type, MemoryError):
return
debug_helper.log("No record in assign_location().")
return
self.locate_exception_raised(records[-1])
if len(records) < 2:
return
self.info["detailed_tb"] = self.get_detailed_stack_info()
_ignore, partial_source, var_info = self.info["detailed_tb"][0]
self.locate_last_call(records[0], partial_source, var_info)
def locate_exception_raised(self, record: FrameInfo) -> None:
"""Sets the values of the following attributes which are
part of a friendly
* exception_raised_header
* exception_raised_source
* exception_raised_variables
"""
from .config import session
if self.tb_data.filename == "<stdin>":
self.info["exception_raised_source"] = cannot_analyze_stdin()
self.info["exception_raised_header"] = ""
return
source = record.partial_source_with_node_range
if source.strip() == "0:":
source = ""
filename = path_utils.shorten_path(record.filename)
unavailable = filename in ["<unknown>", "<string>"]
if unavailable:
self.info["exception_raised_source"] = _(
"{filename} is not a regular Python file whose contents can be analyzed.\n"
).format(filename=filename)
if filename == "<string>":
self.info["exception_raised_source"] += _(
"If you used `exec`, consider using `friendly_exec` instead.\n"
)
if session.ipython_prompt and filename.startswith("["):
self.info["exception_raised_header"] = _(
"Exception raised on line `{linenumber}` of code block {filename}.\n"
).format(linenumber=record.lineno, filename=filename)
else:
self.info["exception_raised_header"] = _(
"Exception raised on line `{linenumber}` of file '{filename}'.\n"
).format(linenumber=record.lineno, filename=filename)
if unavailable:
return
if source.strip() == "<NO SOURCE>":
source = _(
"{filename} is not a regular Python file whose contents can be analyzed.\n"
).format(filename=filename)
self.info["exception_raised_source"] = source
if self.tb_data.node_text:
line = self.tb_data.node_text
else: # This almost never happens
line = record.problem_line()
var_info = info_variables.get_var_info(line, record.frame)
self.info["exception_raised_variables"] = var_info["var_info"]
if "additional_variable_warning" in var_info:
self.info["additional_variable_warning"] = var_info[
"additional_variable_warning"
]
def locate_last_call(self, record: FrameInfo, partial_source, var_info) -> None:
"""Sets the values of the following attributes:
* last_call_header
* exception_raised_source
* last_call_variables
"""
filename = path_utils.shorten_path(record.filename)
if filename and "[" in filename:
self.info["last_call_header"] = _(
"Execution stopped on line `{linenumber}` of code block {filename}.\n"
).format(linenumber=record.lineno, filename=filename)
else:
self.info["last_call_header"] = _(
"Execution stopped on line `{linenumber}` of file '{filename}'.\n"
).format(linenumber=record.lineno, filename=filename)
self.info["last_call_source"] = partial_source
if var_info:
self.info["last_call_variables"] = var_info
def get_detailed_stack_info(self):
# sourcery skip: use-named-expression
if self.tb_data.filename == "<stdin>":
return []
detailed_tb = []
for record in self.tb_data.records:
filename = path_utils.shorten_path(record.filename)
lineno = record.lineno
if record.node_info:
_node, _ignore, line = record.node_info
else:
line = record.problem_line()
partial_source = record.partial_source_with_node_range
var_info = info_variables.get_var_info(line, record.frame)
if "[" in filename:
location = _("Code block {filename}, line `{line}`").format(
filename=filename, line=lineno
)
else:
location = _("File '{filename}', line `{line}`").format(
filename=filename, line=lineno
)
detailed_tb.append((location, partial_source, var_info["var_info"]))
return detailed_tb
def locate_parsing_error(self) -> None:
"""Sets the values of the attributes:
* parsing_error
* parsing_source_error
"""
value = self.tb_data.value
filepath = value.filename
not_regular_file = _(
"The entire content of `{filename}` is not available.\n"
).format(filename=filepath)
if filepath == "<unknown>":
self.info["parsing_error"] = not_regular_file
return
statement = self.tb_data.statement
statement.format_statement()
partial_source = statement.formatted_partial_source
short_filename = path_utils.shorten_path(filepath)
if short_filename and "[" in short_filename:
could_not_understand = _(
"Python could not understand the code in the code block {filename}\n"
).format(filename=short_filename)
else:
could_not_understand = _(
"Python could not understand the code in the file\n'{filename}'\n"
).format(filename=short_filename)
if " ^" in partial_source:
self.info["parsing_error"] = could_not_understand + _(
"at the location indicated.\n"
).format(filename=short_filename)
if filepath in ["<string>", "<stdin>"] and self.tb_data.value.lineno != 1:
self.info["parsing_error"] += not_regular_file
elif filepath: # could be None
self.info["parsing_error"] = could_not_understand + "\n"
self.info["parsing_error_source"] = f"{partial_source}\n"
def assign_tracebacks(self) -> None:
"""When required, a standard Python traceback might be required to be
included as part of the information shown to the user.
This function does the required formatting.
This function defines 3 traceback:
1. The standard Python traceback, given by Python
2. A "simulated" Python traceback, which is essentially the same as
the one given by Python, except that it excludes modules from this
project. In addition, for RecursionError, this traceback is often
further shortened, compared with a normal Python traceback.
3. A potentially shortened traceback, which does not include too much
output so as not to overwhelm beginners. It also includes information
about the code on any line mentioned.
These are given by the attributes:
* original_python_traceback
* simulated_python_traceback
* shortened_traceback
"""
from .config import session
if not hasattr(self, "message"):
self.assign_message(self.tb_data.exception_type, self.tb_data.value)
if isinstance(self.tb_data.formatted_tb, str):
# for example: "Traceback not available from IDLE" ...
tb = self.info["message"]
if self.tb_data.formatted_tb:
tb = self.info["message"] + "\n" + self.tb_data.formatted_tb + "\n"
self.info["simulated_python_traceback"] = tb
self.info["shortened_traceback"] = tb
self.info["original_python_traceback"] = tb
return
# full_tb includes code from friendly-traceback itself
full_tb = [line.rstrip() for line in self.tb_data.formatted_tb]
python_tb = self.create_traceback(self.tb_data.python_records)
tb = self.create_traceback(self.tb_data.records)
shortened_tb = self.shorten(tb)
header = "Traceback (most recent call last):" # not included in records
if full_tb[0].startswith(header) and self.tb_data.filename is not None:
if not issubclass(self.tb_data.exception_type, SyntaxError):
shortened_tb.insert(0, header)
python_tb.insert(0, header)
else:
# The special "Traceback ..." header is not normally shown when
# a SyntaxError occurs at an interactive prompt.
# In this case, the filename will normally be of the form "<...>"
# or we will have changed "File" to be "Code block"
for line in shortened_tb:
if line.startswith(" File") and "<" not in line:
# We have a true file in the traceback
shortened_tb.insert(0, header)
python_tb.insert(0, header)
break
if "RecursionError" in full_tb[-1]:
if len(shortened_tb) > 12:
shortened_tb = shortened_tb[:5] + self.suppressed + shortened_tb[-5:]
if len(python_tb) > 12:
python_tb = python_tb[:5] + self.suppressed + python_tb[-5:]
exc = self.tb_data.value
chain_info = ""
short_chain_info = ""
if exc.__cause__ or exc.__context__:
chain_info = process_exception_chain(self.tb_data.exception_type, exc)
parts = chain_info.split("\n\n")
# suppress line
temp = []
for part in parts:
part = "\n".join(self.shorten(part.split("\n")))
temp.append(part)
short_chain_info = "\n\n".join(temp)
self.info["simulated_python_traceback"] = (
chain_info + "\n".join(python_tb) + "\n"
)
self.info["original_python_traceback"] = chain_info + "\n".join(full_tb) + "\n"
# The following is needed for some determining the cause in at
# least one case.
# skipcq: PYL-W0201
self.tb_data.simulated_python_traceback = "\n".join(python_tb) + "\n"
if session.include_chained_exception:
self.info["shortened_traceback"] = (
short_chain_info + "\n".join(shortened_tb) + "\n"
)
else:
self.info["shortened_traceback"] = "\n".join(shortened_tb) + "\n"
def shorten(self, tb: List[str]) -> List[str]:
"""Shortens a traceback (as list of lines)
by removing lines if it exceeds a certain length
and by using short synonyms for some common directories."""
from .config import session
shortened_tb = tb[:2] + self.suppressed + tb[-5:] if len(tb) > 12 else tb[:]
pattern = re.compile(r'^ File "(.*)", ') # noqa
temp = []
for line in shortened_tb:
match = re.search(pattern, line)
if match:
filename = match[1]
short_filename = path_utils.shorten_path(filename)
line = line.replace(filename, short_filename)
if (
session.ipython_prompt
and short_filename[0] == "["
and short_filename[-1] == "]"
):
line = line.replace(" File", " Code block")
line = line.replace('"[', "[").replace(']"', "]")
parts = line.split(",")
line = ",".join(parts[:2])
temp.append(line)
return temp
def create_traceback(self, records: List[FrameInfo]) -> List[str]:
"""Using records that exclude code from certain files,
creates a list from which a standard-looking traceback can
be created.
"""
result = []
for record in records:
result.append(
f' File "{record.filename}", line {record.lineno}, in {record.code.co_name}'
)
bad_line = record.problem_line()
result.append(f" {bad_line.strip()}")
if issubclass(self.tb_data.exception_type, SyntaxError):
value = self.tb_data.value
offset = value.offset
filename = value.filename
lines = cache.get_source_lines(filename)
result.append(f' File "{filename}", line {value.lineno}')
_line = value.text
if _line is None:
try:
_line = lines[value.lineno - 1]
except Exception: # noqa
pass
if _line is not None:
if filename == "<fstring>" and lines == ["\n"]:
# Before Python 3.9, the traceback included a fake
# file for f-strings which only included parts of
# the f-string content.
cache.add(filename, _line)
_line = _line.rstrip()
bad_line = _line.strip()
if bad_line:
# Note end_lineno and end_offset are new in Python 3.10
# However, we ensured prior to reaching this point that
# they would be defined for other Python versions
if (
value.end_lineno is not None
and value.end_lineno != value.lineno
):
nb_carets = len(bad_line) - offset + 1
continuation = "-->"
else:
nb_carets = value.end_offset - offset if value.end_offset else 1
continuation = ""
nb_carets = max(nb_carets, 1)
offset = offset - (len(_line) - len(bad_line)) # removing indent
# In some IndentationError cases, and possibly others,
# Python's computed offset would show the ^ just before the first token
if offset < 1:
offset = 1
nb_carets = 1
continuation = ""
result.append(f" {bad_line}")
result.append(" " * (3 + offset) + "^" * nb_carets + continuation)
result.append(self.info["message"].strip())
return result
def process_exception_chain(etype: Type[_E], value: _E) -> str:
"""Obtains info about exceptions raised while treating other exceptions."""
seen = set()
lines = []
direct_cause = (
"The above exception was the direct cause of the following exception:"
)
another_exception = (
"During handling of the above exception, another exception occurred:"
)
def chain_exc(typ: Type[_E], exc: _E, tb: Optional[types.TracebackType]) -> None:
"""Recursive function that insert the contents of 'lines' above."""
seen.add(id(exc))
context = exc.__context__
cause = exc.__cause__
if cause is not None and id(cause) not in seen:
chain_exc(type(cause), cause, cause.__traceback__)
lines.append(f"\n {direct_cause}\n\n")
elif (
context is not None
and not exc.__suppress_context__
and id(context) not in seen
):
chain_exc(type(context), context, context.__traceback__)
lines.append(f"\n {another_exception}\n\n")
if tb:
tbe = traceback.extract_tb(tb)
lines.append("Traceback (most recent call last):\n")
for line in traceback.format_list(tbe):
lines.append(line)
for line in traceback.format_exception_only(typ, exc):
lines.append(line)
chain_exc(etype, value, None)
return "".join(lines)
def cannot_analyze_stdin() -> str: # pragma: no cover
"""Typical case: friendly is imported in an ordinary Python
interpreter (REPL), and the user does not activate the friendly
console.
"""
from .config import session
message = _(
"Unfortunately, no additional information is available:\n"
"the content of file '<stdin>' is not accessible.\n"
)
if session.suggest_console:
print(session.suggest_console)
session.suggest_console = ""
return message
|