summaryrefslogtreecommitdiff
path: root/tests/logging_tests
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/logging_tests
parent397b3705c5f762b359cdb494f9447c8a60685adf (diff)
downloaddjango-d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac.tar.gz
Refs #23919 -- Removed encoding preambles and future imports
Diffstat (limited to 'tests/logging_tests')
-rw-r--r--tests/logging_tests/tests.py3
-rw-r--r--tests/logging_tests/urls.py2
-rw-r--r--tests/logging_tests/urls_i18n.py2
-rw-r--r--tests/logging_tests/views.py2
4 files changed, 0 insertions, 9 deletions
diff --git a/tests/logging_tests/tests.py b/tests/logging_tests/tests.py
index 0557ea182b..134cc71808 100644
--- a/tests/logging_tests/tests.py
+++ b/tests/logging_tests/tests.py
@@ -1,6 +1,3 @@
-# -*- coding:utf-8 -*-
-from __future__ import unicode_literals
-
import logging
from contextlib import contextmanager
diff --git a/tests/logging_tests/urls.py b/tests/logging_tests/urls.py
index ca6dd9b430..fa2c0fcd02 100644
--- a/tests/logging_tests/urls.py
+++ b/tests/logging_tests/urls.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.conf.urls import url
from . import views
diff --git a/tests/logging_tests/urls_i18n.py b/tests/logging_tests/urls_i18n.py
index 80ce990413..220f5e4732 100644
--- a/tests/logging_tests/urls_i18n.py
+++ b/tests/logging_tests/urls_i18n.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.conf.urls import url
from django.conf.urls.i18n import i18n_patterns
from django.http import HttpResponse
diff --git a/tests/logging_tests/views.py b/tests/logging_tests/views.py
index a362509700..cb7112e435 100644
--- a/tests/logging_tests/views.py
+++ b/tests/logging_tests/views.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
from django.core.exceptions import DisallowedHost, SuspiciousOperation
from django.http import HttpResponse