Commit e94a701
committed
Python 3 compatibility. New strategy for unicode support from Python 2.6 to 3.3:
removed all references to `py3compat.u` function (which replaced the u'' and u""
unicode strings) by `from __future__ import unicode_literals`.
Python 2.6 to 3.3 support for unicode strings now simply relies on the removal
of all `u` string prefixes and the addition of the unicode future statement at
the beginnning of scripts: `from __future__ import unicode_literals`.1 parent 022a5b5 commit e94a701
1 file changed
+0
-12
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
81 | | - | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | | - | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | 80 | | |
93 | 81 | | |
94 | 82 | | |
| |||
0 commit comments