Details
-
Story
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
Our code is littered with uses of Unicode literals, in form of: u'...'
It would be much cleaner to use this at the top of each file:
from __future__ import unicode_literals
This would also better prepare us to support Python 3 in the future.