Rip out all the u"..." literals and calls to unicode().
diff --git a/Lib/email/utils.py b/Lib/email/utils.py
index ee952d3..de9fbf8 100644
--- a/Lib/email/utils.py
+++ b/Lib/email/utils.py
@@ -44,7 +44,7 @@
COMMASPACE = ', '
EMPTYSTRING = ''
-UEMPTYSTRING = u''
+UEMPTYSTRING = ''
CRLF = '\r\n'
TICK = "'"
@@ -315,9 +315,9 @@
rawval = unquote(value[2])
charset = value[0] or 'us-ascii'
try:
- return unicode(rawval, charset, errors)
+ return str(rawval, charset, errors)
except LookupError:
# XXX charset is unknown to Python.
- return unicode(rawval, fallback_charset, errors)
+ return str(rawval, fallback_charset, errors)
else:
return unquote(value)