[issue42247] unittest hides traceback frames in chained exceptions

2021-04-09 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> unittest swallows part of stack trace when raising AssertionError in a TestCase ___ Python tracker

[issue42247] unittest hides traceback frames in chained exceptions

2021-04-07 Thread Irit Katriel
Irit Katriel added the comment: I think this is the same as issue37712. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Irit Katriel added the comment: I made a patch that replaces the limit hack by a filter on the traceback. We could stop here an just fix this, or we could create a more generic filter in the traceback module as suggested in issue31299. -- ___

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +22556 pull_request: https://github.com/python/cpython/pull/23688 ___ Python tracker ___

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +22555 pull_request: https://github.com/python/cpython/pull/23687 ___ Python tracker ___

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: -22552 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +22552 pull_request: https://github.com/python/cpython/pull/23687 ___ Python tracker ___

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: -22552 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42247] unittest hides traceback frames in chained exceptions

2020-12-07 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch nosy: +iritkatriel nosy_count: 1.0 -> 2.0 pull_requests: +22552 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23687 ___ Python tracker

[issue42247] unittest hides traceback frames in chained exceptions

2020-11-02 Thread David Mandelberg
New submission from David Mandelberg : The traceback in the output of the attached test (see below) doesn't include line 5, which is where the original exception is raised. I think this is because