summaryrefslogtreecommitdiff
path: root/tests/handlers
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2017-03-09 16:17:41 +0100
committerTim Graham <timograham@gmail.com>2017-06-28 14:07:55 -0400
commit550cb3a365dee4edfdd1563224d5304de2a57fda (patch)
treefb532f38774ff7619edd2a4532c3daae1ee0ac5a /tests/handlers
parent43a4835edf32c57eb74c0eb207c276734a34abcf (diff)
downloaddjango-550cb3a365dee4edfdd1563224d5304de2a57fda.tar.gz
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/handlers/views.py b/tests/handlers/views.py
index 22b94de3b9..3c1fa5b802 100644
--- a/tests/handlers/views.py
+++ b/tests/handlers/views.py
@@ -1,12 +1,12 @@
+from contextlib import suppress
+
from django.core.exceptions import SuspiciousOperation
from django.db import connection, transaction
from django.http import HttpResponse, StreamingHttpResponse
from django.views.decorators.csrf import csrf_exempt
-try:
+with suppress(ImportError): # Python < 3.5
from http import HTTPStatus
-except ImportError: # Python < 3.5
- pass
def regular(request):