diff options
Diffstat (limited to 'Lib/test/test_array.py')
-rwxr-xr-x | Lib/test/test_array.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index c9b05c2..0f3e07f 100755 --- a/Lib/test/test_array.py +++ b/Lib/test/test_array.py @@ -592,6 +592,13 @@ class BaseTest(unittest.TestCase): b = array.array(self.badtypecode()) self.assertRaises(TypeError, a.extend, b) + a = array.array(self.typecode, self.example) + a.extend(self.example[::-1]) + self.assertEqual( + a, + array.array(self.typecode, self.example+self.example[::-1]) + ) + def test_coveritertraverse(self): try: import gc |