From ae21e6c1325886e6f343771ec936fbc6901b04f2 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 11 Oct 2009 10:32:16 +0200 Subject: [PATCH] test fix after str changes --- tests/run/literals.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.''' -- 2.26.2