From 7dd06966cb657bb690924ae4aa946114b04db7c3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 27 Dec 2000 19:12:58 +0000 Subject: Make Traceback header conform to new traceback ("innermost last" -> "most recent call last"). --- Lib/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/code.py') diff --git a/Lib/code.py b/Lib/code.py index 5f65b7c9946..9ef63227313 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -141,7 +141,7 @@ class InteractiveInterpreter: del tblist[:1] list = traceback.format_list(tblist) if list: - list.insert(0, "Traceback (innermost last):\n") + list.insert(0, "Traceback (most recent call last):\n") list[len(list):] = traceback.format_exception_only(type, value) finally: tblist = tb = None -- cgit v1.2.3