diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-04-14 15:10:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 15:10:33 +0100 |
commit | 5bf8bf2267cd109970b2d946d43b2e9f71379ba2 (patch) | |
tree | a29b493cace0ba9cf1d5af516750ff9348ce6c49 /Python/pythonrun.c | |
parent | c4073a24f95b54705416138dc1f20141ad76dd37 (diff) | |
download | cpython-git-5bf8bf2267cd109970b2d946d43b2e9f71379ba2.tar.gz |
bpo-38530: Offer suggestions on NameError (GH-25397)
When printing NameError raised by the interpreter, PyErr_Display
will offer suggestions of simmilar variable names in the function that the exception
was raised from:
>>> schwarzschild_black_hole = None
>>> schwarschild_black_hole
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'schwarschild_black_hole' is not defined. Did you mean: schwarzschild_black_hole?
Diffstat (limited to 'Python/pythonrun.c')
0 files changed, 0 insertions, 0 deletions