diff options
author | Guido van Rossum <guido@python.org> | 1993-12-17 12:09:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-17 12:09:14 (GMT) |
commit | 67a5fdbcc2d86cda9ee2efb7a97cb458036d6927 (patch) | |
tree | 2a23c03983e370fc5da75f547961f1e0ccc713cf /Python/ceval.c | |
parent | ad7324c71fbbb60eb34f7d6fe6b5c3663d114304 (diff) | |
download | cpython-67a5fdbcc2d86cda9ee2efb7a97cb458036d6927.zip cpython-67a5fdbcc2d86cda9ee2efb7a97cb458036d6927.tar.gz cpython-67a5fdbcc2d86cda9ee2efb7a97cb458036d6927.tar.bz2 |
* mpzmodule.c: cast some methods to the proper type.
* traceback.c (tb_print): use sys.tracebacklimit as a maximum number of
traceback entries to print (default 1000).
* ceval.c (printtraceback): Don't print stack trace header -- this is now
done by tb_print().
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 425e2a0..6ffbb46 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1710,7 +1710,6 @@ printtraceback(f) { object *v = tb_fetch(); if (v != NULL) { - writestring("Stack backtrace (innermost last):\n", f); tb_print(v, f); DECREF(v); } |