diff options
| author | Tim Graham <timograham@gmail.com> | 2019-02-04 18:53:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-04 18:53:11 -0500 |
| commit | 83c2bc52c2bf6da682989867b09c753ec1a2e5b3 (patch) | |
| tree | c079c7aaf904532ca795a4ac11985e8646385e47 /docs | |
| parent | fdc4518fe296c169cf54f23fdad2e0fc8785c059 (diff) | |
Refs #27753 -- Deprecated django.utils.http urllib aliases.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/3.0.txt | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 1a5b98df33..0550c10ec7 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -15,6 +15,9 @@ about each item can often be found in the release notes of two versions prior. See the :ref:`Django 3.0 release notes <deprecated-features-3.0>` for more details on these changes. +* ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and + ``urlunquote_plus()`` will be removed. + .. _deprecation-removed-in-3.1: 3.1 diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt index 4eca26bbca..4dda131dbc 100644 --- a/docs/releases/3.0.txt +++ b/docs/releases/3.0.txt @@ -248,7 +248,11 @@ Features deprecated in 3.0 Miscellaneous ------------- -* ... +* ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and + ``urlunquote_plus()`` are deprecated in favor of the functions that they're + aliases for: :func:`urllib.parse.quote`, :func:`~urllib.parse.quote_plus`, + :func:`~urllib.parse.unquote`, and :func:`~urllib.parse.unquote_plus`. + .. _removed-features-3.0: |
