diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 19:04:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 19:04:15 (GMT) |
commit | 1ae940a5870df2f706fa884afd533847f6b0b1a8 (patch) | |
tree | ac19577f141b553bd56f998a62478719d5b81cd4 /Python/traceback.c | |
parent | 824de25fe2edade0ded378b4d602351272f4cf63 (diff) | |
download | cpython-1ae940a5870df2f706fa884afd533847f6b0b1a8.zip cpython-1ae940a5870df2f706fa884afd533847f6b0b1a8.tar.gz cpython-1ae940a5870df2f706fa884afd533847f6b0b1a8.tar.bz2 |
Lots of changes, most minor (fatal() instead of abort(), use of
err_fetch/err_restore and so on). But...
NOTE: import.c has been rewritten and all the DL stuff is now in the
new file importdl.c.
Diffstat (limited to 'Python/traceback.c')
-rw-r--r-- | Python/traceback.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c index 1db9c94..414fc8d 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -258,7 +258,6 @@ tb_print(v, f) err_badcall(); return -1; } - sysset("last_traceback", v); limitv = sysget("tracebacklimit"); if (limitv && is_intobject(limitv)) { limit = getintvalue(limitv); |