summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-06 08:09:58 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-17 11:49:15 +0100
commit490cccbe7e83874923b276eed26cc23b0db5ebb9 (patch)
tree12faeff64b1a0f973a9ce3535a0e8635a9dab074 /docs/ref/class-based-views
parentea92a4dc2879e084b46d9b141c0a535d536be2e6 (diff)
Removed versionadded/changed annotations for 4.1.
Diffstat (limited to 'docs/ref/class-based-views')
-rw-r--r--docs/ref/class-based-views/base.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index f60950d1fa..812e6d53fe 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -83,11 +83,6 @@ MRO is an acronym for Method Resolution Order.
asynchronous (``async def``) and synchronous (``def``) handlers are
defined on a single view-class.
- .. versionchanged:: 4.1
-
- Compatibility with asynchronous (``async def``) method handlers was
- added.
-
.. method:: setup(request, *args, **kwargs)
Performs key view initialization prior to :meth:`dispatch`.
@@ -126,11 +121,6 @@ MRO is an acronym for Method Resolution Order.
(``async def``) then the response will be wrapped in a coroutine
function for use with ``await``.
- .. versionchanged:: 4.1
-
- Compatibility with classes defining asynchronous (``async def``)
- method handlers was added.
-
``TemplateView``
================