diff options
author | gbrandl <devnull@localhost> | 2006-12-16 19:10:06 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-12-16 19:10:06 +0100 |
commit | 05d0e660cbb25c7a5335a12b53dff1de111c6d71 (patch) | |
tree | f70e139ca0a187f0b43bdd63fbe5455f42ba300b /pygments/lexers/special.py | |
parent | ef9a7df759fbd24f4728ff8a32e7ba9b3ac42157 (diff) | |
download | pygments-05d0e660cbb25c7a5335a12b53dff1de111c6d71.tar.gz |
[svn] Make RawTokenFormatter/Lexer use unicode escaped strings.
Diffstat (limited to 'pygments/lexers/special.py')
-rw-r--r-- | pygments/lexers/special.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/special.py b/pygments/lexers/special.py index fb033647..28c382ab 100644 --- a/pygments/lexers/special.py +++ b/pygments/lexers/special.py @@ -78,6 +78,6 @@ class RawTokenLexer(Lexer): for ttype_ in ttypes: ttype = getattr(ttype, ttype_) _ttype_cache[ttypestr] = ttype - val = val[1:-2].decode('string-escape') + val = val[2:-2].decode('unicode-escape') yield length, ttype, val length += len(val) |