diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 01:28:34 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 01:28:34 (GMT) |
commit | 5e0110e0c8e5cd5fc6d9571c2def0e6956767107 (patch) | |
tree | 3311960f82a070f727235566614011eb598a81de /Doc/library/traceback.rst | |
parent | ff27d6b747b880508cd03aff139419950567c863 (diff) | |
download | cpython-5e0110e0c8e5cd5fc6d9571c2def0e6956767107.zip cpython-5e0110e0c8e5cd5fc6d9571c2def0e6956767107.tar.gz cpython-5e0110e0c8e5cd5fc6d9571c2def0e6956767107.tar.bz2 |
Merged revisions 78895 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78895 | ezio.melotti | 2010-03-13 03:21:34 +0200 (Sat, 13 Mar 2010) | 1 line
#8011: use exc.tb_lineno instead of traceback.tb_lineno() and pep8ify variable names.
........
Diffstat (limited to 'Doc/library/traceback.rst')
-rw-r--r-- | Doc/library/traceback.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 1450797..32e5733 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -172,12 +172,12 @@ exception and traceback: try: lumberjack() - except: - exceptionType, exceptionValue, exceptionTraceback = sys.exc_info() + except IndexError: + exc_type, exc_value, exc_traceback = sys.exc_info() print("*** print_tb:") - traceback.print_tb(exceptionTraceback, limit=1, file=sys.stdout) + traceback.print_tb(exc_traceback, limit=1, file=sys.stdout) print("*** print_exception:") - traceback.print_exception(exceptionType, exceptionValue, exceptionTraceback, + traceback.print_exception(exc_type, exc_value, exc_traceback, limit=2, file=sys.stdout) print("*** print_exc:") traceback.print_exc() @@ -186,13 +186,13 @@ exception and traceback: print(formatted_lines[0]) print(formatted_lines[-1]) print("*** format_exception:") - print(repr(traceback.format_exception(exceptionType, exceptionValue, - exceptionTraceback))) + print(repr(traceback.format_exception(exc_type, exc_value, + exc_traceback))) print("*** extract_tb:") - print(repr(traceback.extract_tb(exceptionTraceback))) + print(repr(traceback.extract_tb(exc_traceback))) print("*** format_tb:") - print(repr(traceback.format_tb(exceptionTraceback))) - print("*** tb_lineno:", traceback.tb_lineno(exceptionTraceback)) + print(repr(traceback.format_tb(exc_traceback))) + print("*** tb_lineno:", exc_traceback.tb_lineno) The output for the example would look similar to this: |