diff options
| author | Guido van Rossum <guido@python.org> | 1996-10-08 14:13:43 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1996-10-08 14:13:43 +0000 |
| commit | b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5 (patch) | |
| tree | 72e5d9cf750cb8eb7f6196db295adabbf126c340 /Lib/dos_8x3/tracebac.py | |
| parent | 6592f88fc0598aa465f214de0dd4eb5c58229976 (diff) | |
| download | cpython-git-b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5.tar.gz | |
The usual... Sigh...
Diffstat (limited to 'Lib/dos_8x3/tracebac.py')
| -rwxr-xr-x | Lib/dos_8x3/tracebac.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/dos_8x3/tracebac.py b/Lib/dos_8x3/tracebac.py index 982310062d..7488f157a1 100755 --- a/Lib/dos_8x3/tracebac.py +++ b/Lib/dos_8x3/tracebac.py @@ -66,7 +66,7 @@ def extract_tb(tb, limit = None): line = linecache.getline(filename, lineno) if line: line = string.strip(line) else: line = None - list.append(filename, lineno, name, line) + list.append((filename, lineno, name, line)) tb = tb.tb_next n = n+1 return list @@ -176,7 +176,7 @@ def extract_stack(f=None, limit = None): line = linecache.getline(filename, lineno) if line: line = string.strip(line) else: line = None - list.append(filename, lineno, name, line) + list.append((filename, lineno, name, line)) f = f.f_back n = n+1 list.reverse() |
