[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset c1fe49c01f3850aaa32a7d75e47f90eb5c5f7efe by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-34900: Make TestCase.debug() work with subtests (GH-9707) https://github.com/python/cpython/commit/c1fe49c01f3850aaa32a7d75e47f90eb5c5f7efe --

[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset 7a98e302c37781f9c6448a28bc70bff18b7e2862 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-34900: Make TestCase.debug() work with subtests (GH-9707) https://github.com/python/cpython/commit/7a98e302c37781f9c6448a28bc70bff18b7e2862 --

[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +9197 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +9196 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34900] unittest subTests() fails when called from debug()

2018-10-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset da2bf9f66d0c95b988c5d87646d168f65499b316 by Berker Peksag (Bruno Oliveira) in branch 'master': bpo-34900: Make TestCase.debug() work with subtests (GH-9707) https://github.com/python/cpython/commit/da2bf9f66d0c95b988c5d87646d168f65499b316 -

[issue34900] unittest subTests() fails when called from debug()

2018-10-05 Thread Bruno Oliveira
Bruno Oliveira added the comment: > FYI, I just noticed that this is a duplicate of issue 29551, but decided to > keep this one open. OK thanks. I did try to search for open issues before filing this one by using the "subtest result_supports_subtests" terms, as I figured a bug report would

[issue34900] unittest subTests() fails when called from debug()

2018-10-05 Thread Berker Peksag
Berker Peksag added the comment: FYI, I just noticed that this is a duplicate of issue 29551, but decided to keep this one open. -- ___ Python tracker ___ ___

[issue34900] unittest subTests() fails when called from debug()

2018-10-05 Thread Bruno Oliveira
Bruno Oliveira added the comment: Great, thanks again for the quick review. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue34900] unittest subTests() fails when called from debug()

2018-10-05 Thread Berker Peksag
Berker Peksag added the comment: PR 9707 looks good to me. I will merge it once your CLA is processed by the PSF staff. Thanks! -- nosy: +berker.peksag type: crash -> behavior versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker

[issue34900] unittest subTests() fails when called from debug()

2018-10-04 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue34900] unittest subTests() fails when called from debug()

2018-10-04 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +9092 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue34900] unittest subTests() fails when called from debug()

2018-10-04 Thread Bruno Oliveira
Change by Bruno Oliveira : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue34900] unittest subTests() fails when called from debug()

2018-10-04 Thread Bruno Oliveira
New submission from Bruno Oliveira : Consider this code: import unittest class TC(unittest.TestCase): def test_subtest(self): with self.subTest(): pass tc = TC('test_subtest') tc.run() This works when executed, but if we change ``tc.run(