Commit 6571712a authored by Walter Dörwald's avatar Walter Dörwald

Add a slice test with high < low.

parent 7ad60f72
......@@ -427,6 +427,11 @@ class BaseTest(unittest.TestCase):
array.array(self.typecode)
)
self.assertEqual(
a[2:1],
array.array(self.typecode)
)
self.assertEqual(
a[1000:],
array.array(self.typecode)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment