Changeset 6126
- Timestamp:
- 09/13/07 09:41:38 (1 year ago)
- Files:
-
- django/trunk/docs/db-api.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/db-api.txt
r6027 r6126 482 482 483 483 This example excludes all entries whose ``pub_date`` is later than 2005-1-3 484 AND whose headline is NOT"Hello"::484 OR whose headline is "Hello":: 485 485 486 486 Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3)).exclude(headline='Hello')
