diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-11-20 07:58:35 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-11-20 07:58:35 (GMT) |
commit | 6e723d2d11c9a154c301a231788981a9b087aec5 (patch) | |
tree | 614e436f74dcc758e47d9084b23608e453c582ba /Lib | |
parent | 395733d46bbc23d2f559eba4e5f75783f9bca6f1 (diff) | |
download | cpython-6e723d2d11c9a154c301a231788981a9b087aec5.zip cpython-6e723d2d11c9a154c301a231788981a9b087aec5.tar.gz cpython-6e723d2d11c9a154c301a231788981a9b087aec5.tar.bz2 |
Issue #25659: Change assert to TypeError in from_buffer/_copy()
Based on suggestion by Eryk Sun.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ctypes/test/test_frombuffer.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_frombuffer.py b/Lib/ctypes/test/test_frombuffer.py index 29c5a19..7ab38f1 100644 --- a/Lib/ctypes/test/test_frombuffer.py +++ b/Lib/ctypes/test/test_frombuffer.py @@ -120,5 +120,13 @@ class Test(unittest.TestCase): with self.assertRaises(ValueError): (c_int * 1).from_buffer_copy(a, 16 * sizeof(c_int)) + def test_abstract(self): + self.assertRaises(TypeError, Array.from_buffer, bytearray(10)) + self.assertRaises(TypeError, Structure.from_buffer, bytearray(10)) + self.assertRaises(TypeError, Union.from_buffer, bytearray(10)) + self.assertRaises(TypeError, Array.from_buffer_copy, b"123") + self.assertRaises(TypeError, Structure.from_buffer_copy, b"123") + self.assertRaises(TypeError, Union.from_buffer_copy, b"123") + if __name__ == '__main__': unittest.main() |