Alphabetized imports in various docs.

Follow-up of d97cce3409 and 7d3fe36c62.
This commit is contained in:
Mariusz Felisiak 2018-05-12 19:37:42 +02:00 committed by GitHub
parent 1b7d524cfa
commit 35319bf12c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 71 additions and 71 deletions

View file

@ -168,7 +168,7 @@ For example::
Register custom converter classes in your URLconf using
:func:`~django.urls.register_converter`::
from django.urls import register_converter, path
from django.urls import path, register_converter
from . import converters, views
@ -614,8 +614,8 @@ You can obtain these in template code by using:
Or in Python code::
from django.urls import reverse
from django.http import HttpResponseRedirect
from django.urls import reverse
def redirect_to_year(request):
# ...