(self, index)
| 159 | |
| 160 | |
| 161 | def GetSlice(self, index): |
| 162 | if not isinstance(index,slice): |
| 163 | return self.Get(index) |
| 164 | index = index.indices(len(self)) |
| 165 | if(index[2]!=1): |
| 166 | print("Slicing with 3 parameters not supported!") |
| 167 | return none |
| 168 | return self.Range(index[0], index[1]) |
| 169 | |
| 170 | def SetSlice(self, index, other): |
| 171 | if not isinstance(index,slice): |