mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Replaced urllib/urlparse imports with from django.utils.six.moves.
This commit is contained in:
parent
4339e9a92d
commit
981b864fbd
4 changed files with 4 additions and 15 deletions
|
@ -166,9 +166,9 @@ A :class:`ResolverMatch` object can also be assigned to a triple::
|
|||
One possible use of :func:`~django.core.urlresolvers.resolve` would be to test
|
||||
whether a view would raise a ``Http404`` error before redirecting to it::
|
||||
|
||||
from urlparse import urlparse
|
||||
from django.core.urlresolvers import resolve
|
||||
from django.http import HttpResponseRedirect, Http404
|
||||
from django.utils.six.moves.urllib.parse import urlparse
|
||||
|
||||
def myview(request):
|
||||
next = request.META.get('HTTP_REFERER', None) or '/'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue