Changeset 2186
- Timestamp:
- 01/30/06 12:00:53 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/django/db/models/query.py
r2181 r2186 246 246 "Returns a new QuerySet instance with the args ANDed to the existing set." 247 247 clone = self._clone() 248 clone._filters.update( **kwargs)248 clone._filters.update(kwargs) 249 249 return clone 250 250
