summaryrefslogtreecommitdiff
path: root/django/test/html.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-11-19 21:54:19 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 13:44:34 +0100
commitf3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca (patch)
tree65ca40d4527b377845cdd382456383bf97caafa6 /django/test/html.py
parentd7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (diff)
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Diffstat (limited to 'django/test/html.py')
-rw-r--r--django/test/html.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/django/test/html.py b/django/test/html.py
index 94dc7f540e..fd78e6b713 100644
--- a/django/test/html.py
+++ b/django/test/html.py
@@ -5,7 +5,7 @@ Comparing two html documents.
import re
from django.utils import six
-from django.utils.encoding import force_text, python_2_unicode_compatible
+from django.utils.encoding import force_text
from django.utils.html_parser import HTMLParseError, HTMLParser
WHITESPACE = re.compile(r'\s+')
@@ -15,7 +15,6 @@ def normalize_whitespace(string):
return WHITESPACE.sub(' ', string)
-@python_2_unicode_compatible
class Element(object):
def __init__(self, name, attributes):
self.name = name
@@ -139,7 +138,6 @@ class Element(object):
return six.text_type(self)
-@python_2_unicode_compatible
class RootElement(Element):
def __init__(self):
super(RootElement, self).__init__(None, ())