Changeset 6485
- Timestamp:
- 10/13/07 21:12:03 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/django/db/models/sql/where.py
r6336 r6485 37 37 obj = super(WhereNode, self).__deepcopy__(memodict) 38 38 obj.query = self.query 39 memodict[id(obj)] = obj 39 40 return obj 40 41
