(self, index, other)
| 168 | return self.Range(index[0], index[1]) |
| 169 | |
| 170 | def SetSlice(self, index, other): |
| 171 | if not isinstance(index,slice): |
| 172 | self.Set(index, other) |
| 173 | return |
| 174 | index = index.indices(len(self)) |
| 175 | if(index[2]!=1): |
| 176 | print("Slicing with 3 parameters not supported!") |
| 177 | return none |
| 178 | Expr(other).AssignTo(self.Range(index[0], index[1]).expr) |
| 179 | |
| 180 | |
| 181 |