Removed versionadded/changed annotations for 1.10.

This commit is contained in:
Tim Graham 2017-01-02 10:25:57 -05:00
parent 401c5b2e42
commit e27e4c0339
57 changed files with 0 additions and 562 deletions

View file

@ -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
----------------------------