Auto-tools/Projects/PublicES: Difference between revisions

Jump to navigation Jump to search
Line 176: Line 176:
|}
|}


This makes strings unicode everywhere (well, not calls to __getattribute__, but at least they are ascii)
The latter makes Python interpret untyped string constants as unicode; and I don't need to be explicit (u"") everywhere.  Also, the second line works well with the first so you do not end up with the nonsensical situation like <code>u"é" != "é".decode("latin1").encode("utf8")</code>
The latter line allows me to avoid explicit unicode literals (u"") all through my code, and it works well with the first so you do not end up with <code>u"é" != "é".decode("latin1").encode("utf8")</code>


=== PyPi and setup.py ===
=== PyPi and setup.py ===
Confirmed users
513

edits

Navigation menu