Hi, > Holger Joukl wrote: >> I just realized that operator.delslice() does not work with 2.1beta3 Actually, delslice() never worked in 2.0 and was removed from the operator module in Py3. It's also easily replaced with operator.delitem(x, slice()). So I won't change the current behaviour. Stefan