mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Refs #23919 -- Replaced usage of django.utils.http utilities with Python equivalents
Thanks Tim Graham for the review.
This commit is contained in:
parent
af598187ec
commit
fee42fd99e
16 changed files with 63 additions and 83 deletions
|
|
@ -5,10 +5,10 @@ import errno
|
|||
import os
|
||||
import socket
|
||||
from urllib.error import HTTPError
|
||||
from urllib.parse import urlencode
|
||||
from urllib.request import urlopen
|
||||
|
||||
from django.test import LiveServerTestCase, override_settings
|
||||
from django.utils.http import urlencode
|
||||
|
||||
from .models import Person
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue