Commit 3071a1ae authored by Georg Brandl's avatar Georg Brandl

A test case for the fix in #1674228.

parent 3eb76489
......@@ -92,6 +92,17 @@ class SliceTest(unittest.TestCase):
self.assertRaises(OverflowError, slice(None).indices, 1L<<100)
def test_setslice_without_getslice(self):
tmp = []
class X(object):
def __setslice__(self, i, j, k):
tmp.append((i, j, k))
x = X()
x[1:2] = 42
self.assertEquals(tmp, [(1, 2, 42)])
def test_main():
test_support.run_unittest(SliceTest)
......
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