summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-12-01 21:39:59 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2021-12-02 14:57:42 -0500
commit9fc17513fe69a1fd26fc522f9862af3e0ebfd2c4 (patch)
tree81c787491ed06438e23cac74616c6cee9c824163 /lib/sqlalchemy
parentdff827df53cd3af8a641c74e5115707664eb6d79 (diff)
downloadsqlalchemy-9fc17513fe69a1fd26fc522f9862af3e0ebfd2c4.tar.gz
copy list for __iadd__
Fixed issue where a list mapped with :func:`_orm.relationship` would go into an endless loop if in-place added to itself, i.e. the ``+=`` operator were used, as well as if ``.extend()`` were given the same list. Fixes: #7389 Change-Id: Idd5118420f8bc684d1ee36b2b6d4c5812f36cc4c
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/orm/collections.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/collections.py b/lib/sqlalchemy/orm/collections.py
index ccb88866e..d71c84268 100644
--- a/lib/sqlalchemy/orm/collections.py
+++ b/lib/sqlalchemy/orm/collections.py
@@ -1252,7 +1252,7 @@ def _list_decorators():
def extend(fn):
def extend(self, iterable):
- for value in iterable:
+ for value in list(iterable):
self.append(value)
_tidy(extend)
@@ -1262,7 +1262,7 @@ def _list_decorators():
def __iadd__(self, iterable):
# list.__iadd__ takes any iterable and seems to let TypeError
# raise as-is instead of returning NotImplemented
- for value in iterable:
+ for value in list(iterable):
self.append(value)
return self