This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author iritkatriel
Recipients CharlesFengY, Mark.Shannon, iritkatriel
Date 2021-02-10.11:55:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612958145.02.0.94195057658.issue43185@roundup.psfhosted.org>
In-reply-to
Content
Reproduced on master as well. Simplified script:

------------------------------------------
import unittest

def f():
    raise TypeError

class TestAudioop(unittest.TestCase):
    def test_invalid_adpcm_state(self):
        self.assertRaises(TypeError, f) 
        self.test_invalid_adpcm_state()

TestAudioop().test_invalid_adpcm_state()

------------------------------------------
History
Date User Action Args
2021-02-10 11:55:45iritkatrielsetrecipients: + iritkatriel, Mark.Shannon, CharlesFengY
2021-02-10 11:55:45iritkatrielsetmessageid: <1612958145.02.0.94195057658.issue43185@roundup.psfhosted.org>
2021-02-10 11:55:45iritkatriellinkissue43185 messages
2021-02-10 11:55:44iritkatrielcreate