Fixed #25382 -- Removed obsolete references to DateQuerySet.

This commit is contained in:
Renato Oliveira 2015-09-11 10:14:35 -05:00 committed by Tim Graham
parent fba8655e88
commit e3720b990a
4 changed files with 17 additions and 23 deletions

View file

@ -646,9 +646,9 @@ dates
.. method:: dates(field, kind, order='ASC')
Returns a ``DateQuerySet`` — a ``QuerySet`` that evaluates to a list of
:class:`datetime.date` objects representing all available dates of a
particular kind within the contents of the ``QuerySet``.
Returns a ``QuerySet`` that evaluates to a list of :class:`datetime.date`
objects representing all available dates of a particular kind within the
contents of the ``QuerySet``.
``field`` should be the name of a ``DateField`` of your model.
``kind`` should be either ``"year"``, ``"month"`` or ``"day"``. Each