diff options
| author | Tim Graham <timograham@gmail.com> | 2017-09-07 08:16:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-07 08:16:21 -0400 |
| commit | 6e4c6281dbb7ee12bcdc22620894edb4e9cf623f (patch) | |
| tree | 1c21218d4b6f00c499f18943d5190ebe7b5248c9 /django/utils/http.py | |
| parent | 8b2515a450ef376b9205029090af0a79c8341bd7 (diff) | |
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda
because try/except performs better.
Diffstat (limited to 'django/utils/http.py')
| -rw-r--r-- | django/utils/http.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/django/utils/http.py b/django/utils/http.py index 0870f1f180..07b6ae246a 100644 --- a/django/utils/http.py +++ b/django/utils/http.py @@ -5,7 +5,6 @@ import re import unicodedata import warnings from binascii import Error as BinasciiError -from contextlib import suppress from email.utils import formatdate from urllib.parse import ( ParseResult, SplitResult, _coerce_args, _splitnetloc, _splitparams, quote, @@ -166,8 +165,10 @@ def parse_http_date_safe(date): """ Same as parse_http_date, but return None if the input is invalid. """ - with suppress(Exception): + try: return parse_http_date(date) + except Exception: + pass # Base 36 functions: useful for generating compact URLs |
