Ticket #5802: db-api_typo.diff
File db-api_typo.diff, 489 bytes (added by , 17 years ago) |
---|
-
docs/db-api.txt
330 330 331 331 Entry.objects.filter( 332 332 headline__startswith='What').exclude( 333 pub_date__ gte=datetime.now()).filter(333 pub_date__lte=datetime.now()).filter( 334 334 pub_date__gte=datetime(2005, 1, 1)) 335 335 336 336 ...takes the initial ``QuerySet`` of all entries in the database, adds a