commit | 162c6a637a6a1389b6802a99cbe2781435990d47 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Wed Feb 14 03:20:18 2001 +0000 |
committer | Fred Drake <fdrake@acm.org> | Wed Feb 14 03:20:18 2001 +0000 |
tree | 803a67383f02bec304bf3aab2e37568c082fec17 | |
parent | 15ad28cf891acde5d37533f4df22a447d94abb5a [diff] [blame] |
Reflect change in traceback format: "innermost last" --> "most recent call last"
diff --git a/Doc/lib/libpdb.tex b/Doc/lib/libpdb.tex index 8bfcd77..93d39c0 100644 --- a/Doc/lib/libpdb.tex +++ b/Doc/lib/libpdb.tex
@@ -48,7 +48,7 @@ >>> import pdb >>> import mymodule >>> mymodule.test() -Traceback (innermost last): +Traceback (most recent call last): File "<stdin>", line 1, in ? File "./mymodule.py", line 4, in test test2()