projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ae3e5c
)
test fix after str changes
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 11 Oct 2009 08:32:16 +0000
(10:32 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 11 Oct 2009 08:32:16 +0000
(10:32 +0200)
tests/run/literals.pyx
patch
|
blob
|
history
diff --git
a/tests/run/literals.pyx
b/tests/run/literals.pyx
index ecc1524bae5a618bc73089ccce43aeef223c4ba2..8aeb38e5c49a687b5df40f8652ca8da4ff3b9ca1 100644
(file)
--- 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.'''