summaryrefslogtreecommitdiff
path: root/tests/handlers
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-11-19 18:19:41 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 09:55:19 +0100
commitd7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (patch)
treec7faf11a6f6c14981a08a621c36e6f736b21dd8b /tests/handlers
parent397b3705c5f762b359cdb494f9447c8a60685adf (diff)
Refs #23919 -- Removed encoding preambles and future imports
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/tests.py4
-rw-r--r--tests/handlers/urls.py2
-rw-r--r--tests/handlers/views.py2
3 files changed, 0 insertions, 8 deletions
diff --git a/tests/handlers/tests.py b/tests/handlers/tests.py
index a420917421..bae2043918 100644
--- a/tests/handlers/tests.py
+++ b/tests/handlers/tests.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-
-from __future__ import unicode_literals
-
import unittest
from django.core.exceptions import ImproperlyConfigured
diff --git a/tests/handlers/urls.py b/tests/handlers/urls.py
index 9d23fd3fa7..1a22859093 100644
--- a/tests/handlers/urls.py
+++ b/tests/handlers/urls.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.conf.urls import url
from . import views
diff --git a/tests/handlers/views.py b/tests/handlers/views.py
index 21c1387f08..22b94de3b9 100644
--- a/tests/handlers/views.py
+++ b/tests/handlers/views.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.core.exceptions import SuspiciousOperation
from django.db import connection, transaction
from django.http import HttpResponse, StreamingHttpResponse