From 07ff16733ed4a2ec12ab2d331a970e9b8a44935e Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Thu, 5 Mar 2015 12:26:00 +1300 Subject: [PATCH] Fix brownbag in issue 17911 commit --- Lib/test/test_traceback.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 9ff75483422..3c3227365f7 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -591,10 +591,9 @@ class TestTracebackException(unittest.TestCase): except Exception as e: exc_info = sys.exc_info() self.expected_stack = traceback.StackSummary.extract( - traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False, - capture_locals=True) + traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False) self.exc = traceback.TracebackException.from_exception( - e, limit=1, lookup_lines=False, capture_locals=True) + e, limit=1, lookup_lines=False) expected_stack = self.expected_stack exc = self.exc self.assertEqual(None, exc.__cause__)