[issue27835] SystemExit in setUpClass etc. terminates test run

2021-04-16 Thread Irit Katriel
Change by Irit Katriel : -- stage: patch review -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue27835] SystemExit in setUpClass etc. terminates test run

2021-02-11 Thread Irit Katriel
Irit Katriel added the comment: I can't reproduce the issue. I think it was fixed in issue24412. -- nosy: +iritkatriel resolution: -> fixed status: open -> pending ___ Python tracker

[issue27835] SystemExit in setUpClass etc. terminates test run

2016-08-24 Thread SilentGhost
Changes by SilentGhost : -- nosy: +ezio.melotti stage: -> patch review versions: +Python 3.6 ___ Python tracker ___

[issue27835] SystemExit in setUpClass etc. terminates test run

2016-08-23 Thread alexander.sturm
Changes by alexander.sturm : Added file: http://bugs.python.org/file44196/issue_27835_py3k.diff ___ Python tracker ___

[issue27835] SystemExit in setUpClass etc. terminates test run

2016-08-23 Thread alexander.sturm
Changes by alexander.sturm : -- keywords: +patch Added file: http://bugs.python.org/file44195/issue_27835.diff ___ Python tracker

[issue27835] SystemExit in setUpClass etc. terminates test run

2016-08-23 Thread alexander.sturm
New submission from alexander.sturm: In the following example code, a SystemExit is raised in setUpClass of a unittest.TestCase, which causes the python instance to terminate. This behavior is inconsistent with how SystemExit is handled in other places (e.g. in setUp/tearDown methods, or in