diff options
author | Andrew Hoos <andrewjhoos@gmail.com> | 2016-11-29 17:56:47 -0800 |
---|---|---|
committer | Andrew Hoos <andrewjhoos@gmail.com> | 2016-11-29 17:56:47 -0800 |
commit | 677eebd87677680128acad6445715356932f9ddc (patch) | |
tree | 3c9a8b9e833882cf7504863035ab45f5e04d0d78 /coverage | |
parent | b5acf8c95b4c1060a9bc646dcb9cf52137c8df92 (diff) | |
download | python-coveragepy-git-677eebd87677680128acad6445715356932f9ddc.tar.gz |
Limit changes to only execfile.py
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/cmdline.py | 5 | ||||
-rw-r--r-- | coverage/execfile.py | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index bbddf0a2..89420241 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -754,7 +754,10 @@ def main(argv=None): try: status = CoverageScript().command_line(argv) except ExceptionDuringRun as err: - # An exception was caught while running the product code. + # An exception was caught while running the product code. The + # sys.exc_info() return tuple is packed into an ExceptionDuringRun + # exception. + traceback.print_exception(*err.args) status = ERR except CoverageException as err: # A controlled error inside coverage.py: print the message to the user. diff --git a/coverage/execfile.py b/coverage/execfile.py index d1aa2529..fbb829f3 100644 --- a/coverage/execfile.py +++ b/coverage/execfile.py @@ -202,7 +202,6 @@ def run_python_file(filename, args, package=None, modulename=None, path0=None): raise except: typ, err, tb = sys.exc_info() - traceback.print_exception(typ, err, tb.tb_next) raise ExceptionDuringRun(typ, err, tb.tb_next) finally: |