From: Stefan Behnel Date: Sun, 11 Oct 2009 08:32:16 +0000 (+0200) Subject: test fix after str changes X-Git-Tag: 0.13.beta0~2^2~121^2~74 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ae21e6c1325886e6f343771ec936fbc6901b04f2;p=cython.git test fix after str changes --- diff --git a/tests/run/literals.pyx b/tests/run/literals.pyx index ecc1524b..8aeb38e5 100644 --- a/tests/run/literals.pyx +++ b/tests/run/literals.pyx @@ -37,7 +37,7 @@ double quoted string.""" i = 'This string\ has an ignored newline.' j = 'One-char escapes: \'\"\\\a\b\f\n\r\t\v' - k = 'Oct and hex escapes: \1 \12 \123 \x45 \xaf \xAF' + k = b'Oct and hex escapes: \1 \12 \123 \x45 \xaf \xAF' l = r'''This is\ a \three \line raw string with some backslashes.'''