Kaydet (Commit) 3f53cac5 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Merge pull request #318 from Matt-Stevens/master

Small doc change: clarify day and month
......@@ -235,14 +235,14 @@ refinements together. For example::
... ).exclude(
... pub_date__gte=datetime.now()
... ).filter(
... pub_date__gte=datetime(2005, 1, 1)
... pub_date__gte=datetime(2005, 1, 30)
... )
This takes the initial :class:`~django.db.models.query.QuerySet` of all entries
in the database, adds a filter, then an exclusion, then another filter. The
final result is a :class:`~django.db.models.query.QuerySet` containing all
entries with a headline that starts with "What", that were published between
January 1, 2005, and the current day.
January 30, 2005, and the current day.
.. _filtered-querysets-are-unique:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment