diff --git a/django/utils/http.py b/django/utils/http.py index ba814504ad7..6c55314096b 100644 --- a/django/utils/http.py +++ b/django/utils/http.py @@ -34,11 +34,6 @@ ASCTIME_DATE = re.compile(r'^\w{3} %s %s %s %s$' % (__M, __D2, __T, __Y)) RFC3986_GENDELIMS = str(":/?#[]@") RFC3986_SUBDELIMS = str("!$&'()*+,;=") -PROTOCOL_TO_PORT = { - 'http': 80, - 'https': 443, -} - @keep_lazy_text def urlquote(url, safe='/'):