summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/util.py')
-rw-r--r--lib/sqlalchemy/util.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/util.py b/lib/sqlalchemy/util.py
index d4d556699..23e828ef3 100644
--- a/lib/sqlalchemy/util.py
+++ b/lib/sqlalchemy/util.py
@@ -383,6 +383,9 @@ class HistoryArraySet(UserList.UserList):
def remove(self, item):
if self._delrecord(item):
self.data.remove(item)
+ def extend(self, item_list):
+ for item in item_list:
+ self.append(item)
def __add__(self, other):
raise NotImplementedError()
def __radd__(self, other):