test fix after str changes
authorStefan Behnel <scoder@users.berlios.de>
Sun, 11 Oct 2009 08:32:16 +0000 (10:32 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 11 Oct 2009 08:32:16 +0000 (10:32 +0200)
tests/run/literals.pyx

index ecc1524bae5a618bc73089ccce43aeef223c4ba2..8aeb38e5c49a687b5df40f8652ca8da4ff3b9ca1 100644 (file)
@@ -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.'''