mirror of
https://github.com/python/cpython.git
synced 2025-10-22 14:42:22 +00:00
Fix brownbag in issue 17911 commit
This commit is contained in:
parent
6bc2c1e7eb
commit
07ff16733e
1 changed files with 2 additions and 3 deletions
|
@ -591,10 +591,9 @@ class TestTracebackException(unittest.TestCase):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
exc_info = sys.exc_info()
|
exc_info = sys.exc_info()
|
||||||
self.expected_stack = traceback.StackSummary.extract(
|
self.expected_stack = traceback.StackSummary.extract(
|
||||||
traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False,
|
traceback.walk_tb(exc_info[2]), limit=1, lookup_lines=False)
|
||||||
capture_locals=True)
|
|
||||||
self.exc = traceback.TracebackException.from_exception(
|
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
|
expected_stack = self.expected_stack
|
||||||
exc = self.exc
|
exc = self.exc
|
||||||
self.assertEqual(None, exc.__cause__)
|
self.assertEqual(None, exc.__cause__)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue