support for long unicode escapes ('\U...')
authorStefan Behnel <scoder@users.berlios.de>
Sun, 10 Aug 2008 18:37:12 +0000 (20:37 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 10 Aug 2008 18:37:12 +0000 (20:37 +0200)
commit71a599407e0f40e5cf050c9d681309e888fee988
treed43191baef5a9fd20b61415d274a05c555b6c561
parentfcdc2a7217cab02148f9f92b11f189079936314f
support for long unicode escapes ('\U...')
fixed unicode escape handling in byte strings
unescape \xXY in string literals as C allows it to conflict with trailing hex numbers - output string escaping will do the right thing
Cython/Compiler/Lexicon.py
Cython/Compiler/Parsing.py
tests/run/strescapes.pyx [new file with mode: 0644]