Unicode
Unicode Literals
Comments
- Python source files are 8-bit ASCII.
- Unicode string literals are not written in any special encoding (UTF-8, UTF-16, etc.)
- Raw strings a little strange. All escape codes uninterpreted except for \u.
- -U option makes all string literals Unicode (the default in the future??)
|