1
0
mirror of https://github.com/django/django.git synced 2025-04-03 13:06:49 +00:00

[1.8.x] Removed DateTimeQuerySet from docs.

Obsolete since refs #23867.

Backport of e9fdecf98417e39a93c81a854a780550321a9795 from master
This commit is contained in:
Tim Graham 2015-04-18 10:13:41 -04:00
parent bd0883d5cc
commit ae47854a25

View File

@ -696,9 +696,9 @@ datetimes
.. method:: datetimes(field_name, kind, order='ASC', tzinfo=None)
Returns a ``DateTimeQuerySet`` — a ``QuerySet`` that evaluates to a list of
:class:`datetime.datetime` 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.datetime`
objects representing all available dates of a particular kind within the
contents of the ``QuerySet``.
``field_name`` should be the name of a ``DateTimeField`` of your model.