mirror of
https://github.com/python/cpython.git
synced 2025-07-17 16:25:18 +00:00
Change traceback error message to "most recent call last" from
"innermost last". The latter was mysterious to newbies.
This commit is contained in:
parent
ffc0f4fb36
commit
6d10887cdc
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ PyTraceBack_Print(v, f)
|
|||
if (limit <= 0)
|
||||
return 0;
|
||||
}
|
||||
err = PyFile_WriteString("Traceback (innermost last):\n", f);
|
||||
err = PyFile_WriteString("Traceback (most recent call last):\n", f);
|
||||
if (!err)
|
||||
err = tb_printinternal((tracebackobject *)v, f, limit);
|
||||
return err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue