summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-02 10:25:57 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commite27e4c03399f610e0db1fb9b881095d762fda2b7 (patch)
tree11bd3fc4e762fad072ef29c0498daab3cba49554 /docs/topics/http
parent401c5b2e42bf9134d9221f446765dd0777306f0b (diff)
Removed versionadded/changed annotations for 1.10.
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/middleware.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt
index d5e8927065..09cf78557d 100644
--- a/docs/topics/http/middleware.txt
+++ b/docs/topics/http/middleware.txt
@@ -86,15 +86,6 @@ caveats:
* Unlike the ``__call__()`` method which is called once per request,
``__init__()`` is called only *once*, when the Web server starts.
-.. versionchanged:: 1.10
-
- In older versions, ``__init__()`` wasn't called until the Web server
- responded to its first request.
-
- In older versions, ``__init__()`` didn't accept any arguments. To allow
- your middleware to be used in Django 1.9 and earlier, make ``get_response``
- an optional argument (``get_response=None``).
-
Marking middleware as unused
----------------------------