[magic-removal] dict.update(**kwargs) not supported in Python 2.3
Index: /usr/lib/python2.3/site-packages/django/db/models/query.py
===================================================================
--- /usr/lib/python2.3/site-packages/django/db/models/query.py (revision 2185)
+++ /usr/lib/python2.3/site-packages/django/db/models/query.py (working copy)
@@ -245,7 +245,7 @@
def filter(self, **kwargs):
"Returns a new QuerySet instance with the args ANDed to the existing set."
clone = self._clone()
- clone._filters.update(**kwargs)
+ for k, v in kwargs.items(): clone._filters[k] = v
return clone
def select_related(self, true_or_false=True):
(In [2186]) magic-removal: Fixed #1297 -- Fixed Python 2.4 style dict.update() to Python 2.3-compatible