Changeset 6860
- Timestamp:
- 12/02/07 21:31:26 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/django/db/models/sql/query.py
r6762 r6860 989 989 sql, params = self.as_sql() 990 990 except EmptyResultSet: 991 raise StopIteration 991 if result_type == MULTI: 992 raise StopIteration 993 else: 994 return 992 995 993 996 cursor = self.connection.cursor()
