summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-04 12:29:31 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-13 09:07:51 +0200
commit4c5236ef93db714b63eedcc5a162631a6ca1def9 (patch)
treed82b7fc2f36909b2bf05b0aa45a5c30792d812ad /docs/topics/testing
parent3b94f12462d262a812930cf25efe8d8eb07c5c83 (diff)
Removed versionadded/changed annotations for 3.0.
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/tools.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index dd9fa5eb1c..b14a173987 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -132,10 +132,6 @@ Use the ``django.test.Client`` class to make requests.
exceptions raised during the request should also be raised in the test.
Defaults to ``True``.
- .. versionadded:: 3.0
-
- The ``raise_request_exception`` argument was added.
-
Once you have a ``Client`` instance, you can call any of the following
methods:
@@ -481,8 +477,6 @@ Specifically, a ``Response`` object has the following attributes:
.. attribute:: exc_info
- .. versionadded:: 3.0
-
A tuple of three values that provides information about the unhandled
exception, if any, that occurred during the view.