Change traceback error message to "most recent call last" from

"innermost last".  The latter was mysterious to newbies.
This commit is contained in:
Guido van Rossum 2000-03-31 00:39:23 +00:00
parent ffc0f4fb36
commit 6d10887cdc
1 changed files with 1 additions and 1 deletions

View File

@ -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;