From e9fdecf98417e39a93c81a854a780550321a9795 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 18 Apr 2015 10:13:41 -0400 Subject: [PATCH] Removed DateTimeQuerySet from docs. Obsolete since refs #23867. --- docs/ref/models/querysets.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index fdaa79540a..733025a5f1 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -678,9 +678,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.