(self, other)
| 1388 | self.data.sort(*args, **kwds) |
| 1389 | |
| 1390 | def extend(self, other): |
| 1391 | if isinstance(other, UserList): |
| 1392 | self.data.extend(other.data) |
| 1393 | else: |
| 1394 | self.data.extend(other) |
| 1395 | |
| 1396 | |
| 1397 | ################################################################################ |
no outgoing calls