From c73728373c767119271e3813b3f4d182c845a297 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 12 May 2008 18:03:53 +0000 Subject: [PATCH] Remove function obsolete since Python 2.3 from traceback module. --- Lib/traceback.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Lib/traceback.py b/Lib/traceback.py index 0c01ac3bc9c..fb1c5addd88 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -7,7 +7,7 @@ import types __all__ = ['extract_stack', 'extract_tb', 'format_exception', 'format_exception_only', 'format_list', 'format_stack', 'format_tb', 'print_exc', 'format_exc', 'print_exception', - 'print_last', 'print_stack', 'print_tb', 'tb_lineno'] + 'print_last', 'print_stack', 'print_tb'] def _print(file, str='', terminator='\n'): file.write(str+terminator) @@ -293,10 +293,3 @@ def extract_stack(f=None, limit = None): n = n+1 list.reverse() return list - -def tb_lineno(tb): - """Calculate correct line number of traceback given in tb. - - Obsolete in 2.3. - """ - return tb.tb_lineno