diff options
Diffstat (limited to 'Lib/UserList.py')
-rw-r--r-- | Lib/UserList.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/UserList.py b/Lib/UserList.py index 1d5065f..93e4a7e 100644 --- a/Lib/UserList.py +++ b/Lib/UserList.py @@ -49,3 +49,4 @@ class UserList: def index(self, item): return self.data.index(item) def reverse(self): self.data.reverse() def sort(self, *args): apply(self.data.sort, args) + def extend(self, list): self.data.extend(list) |