(self)
| 1351 | return self |
| 1352 | |
| 1353 | def __copy__(self): |
| 1354 | inst = self.__class__.__new__(self.__class__) |
| 1355 | inst.__dict__.update(self.__dict__) |
| 1356 | # Create a copy and avoid triggering descriptors |
| 1357 | inst.__dict__["data"] = self.__dict__["data"][:] |
| 1358 | return inst |
| 1359 | |
| 1360 | def append(self, item): |
| 1361 | self.data.append(item) |