summaryrefslogtreecommitdiff
path: root/docs/topics/http
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/http
parent3b94f12462d262a812930cf25efe8d8eb07c5c83 (diff)
Removed versionadded/changed annotations for 3.0.
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/decorators.txt4
-rw-r--r--docs/topics/http/sessions.txt2
-rw-r--r--docs/topics/http/urls.txt5
3 files changed, 0 insertions, 11 deletions
diff --git a/docs/topics/http/decorators.txt b/docs/topics/http/decorators.txt
index e1ec2c6028..fe91d0cc98 100644
--- a/docs/topics/http/decorators.txt
+++ b/docs/topics/http/decorators.txt
@@ -121,7 +121,3 @@ client-side caching.
This decorator adds a ``Cache-Control: max-age=0, no-cache, no-store,
must-revalidate, private`` header to a response to indicate that a page
should never be cached.
-
- .. versionchanged:: 3.0
-
- ``private`` directive was added.
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index 9427ac0169..41c2c499e4 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -246,8 +246,6 @@ You can edit it multiple times.
.. method:: get_session_cookie_age()
- .. versionadded:: 3.0
-
Returns the age of session cookies, in seconds. Defaults to
:setting:`SESSION_COOKIE_AGE`.
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index ff39635c9c..31671db81d 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -61,11 +61,6 @@ algorithm the system follows to determine which Python code to execute:
in the optional ``kwargs`` argument to :func:`django.urls.path` or
:func:`django.urls.re_path`.
- .. versionchanged:: 3.0
-
- In older versions, the keyword arguments with ``None`` values are
- made up also for not provided named parts.
-
#. If no URL pattern matches, or if an exception is raised during any
point in this process, Django invokes an appropriate
error-handling view. See `Error handling`_ below.