summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-09-12 21:49:28 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-09-13 20:11:00 +0200
commit462d7837f93c02f0812368737294c9fde997229f (patch)
treedfba56eba2ca9702e9d47c61024577cb64fb7ca1 /docs
parent6b16623bd9613c3b0dc7d1fb6f14c00768f364a9 (diff)
[3.1.x] Corrected exception types in QuerySet docs.
Backport of 9a0e5052ed5509cc582b1b3eeaa30f85858fee48 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 8c63a8aa5a..1b3f703bdf 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -594,7 +594,7 @@ A few subtleties that are worth mentioning:
ignored.
* Calling :meth:`only()` and :meth:`defer()` after ``values()`` doesn't make
- sense, so doing so will raise a ``NotImplementedError``.
+ sense, so doing so will raise a ``TypeError``.
* Combining transforms and aggregates requires the use of two :meth:`annotate`
calls, either explicitly or as keyword arguments to :meth:`values`. As above,
@@ -3406,8 +3406,7 @@ documentation to learn how to create your aggregates.
SQLite can't handle aggregation on date/time fields out of the box.
This is because there are no native date/time fields in SQLite and Django
currently emulates these features using a text field. Attempts to use
- aggregation on date/time fields in SQLite will raise
- ``NotImplementedError``.
+ aggregation on date/time fields in SQLite will raise ``NotSupportedError``.
.. admonition:: Note