diff options
| author | David Smith <smithdc@gmail.com> | 2020-05-04 19:33:35 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-05-05 07:34:34 +0200 |
| commit | 2522559d1a612a4e8885de4780ff2b7aa7b8d375 (patch) | |
| tree | ac3a7500811bd68fe4f4f9dfbe568c32e22f04dd /docs/ref | |
| parent | f2051eb8a7febdaaa43bd33bf5a6108c5f428e59 (diff) | |
Fixed #31534 -- Deprecated django.conf.urls.url().
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/urls.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/ref/urls.txt b/docs/ref/urls.txt index 1527a34720..ce14817c22 100644 --- a/docs/ref/urls.txt +++ b/docs/ref/urls.txt @@ -141,8 +141,11 @@ Helper function to return a URL pattern for serving files in debug mode:: .. function:: url(regex, view, kwargs=None, name=None) -This function is an alias to :func:`django.urls.re_path()`. It's likely to be -deprecated in a future release. +This function is an alias to :func:`django.urls.re_path()`. + +.. deprecated:: 3.1 + + Alias of :func:`django.urls.re_path` for backwards compatibility. ``handler400`` ============== |
