use unicode strings for compiler error tests (just for consistency)
authorStefan Behnel <scoder@users.berlios.de>
Sun, 26 Oct 2008 17:26:42 +0000 (18:26 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 26 Oct 2008 17:26:42 +0000 (18:26 +0100)
tests/errors/cdefoptargs.pyx
tests/errors/e_pxdimpl.pyx
tests/errors/e_strcoerce.pyx
tests/errors/e_switch.pyx
tests/errors/encoding.pyx
tests/errors/futurebraces.pyx
tests/errors/invalid_cast.pyx
tests/errors/undefinedname.pyx
tests/errors/void_as_arg.pyx

index c7ac4804df65e6ad6a8da3147d24b5e05912f597..858c7fd920aac4b28fffb4aa3786ab6430a95b4c 100644 (file)
@@ -4,6 +4,6 @@ def call5():
 cdef b(a, b, c=1, d=2):
     pass
 
-_ERRORS = """
+_ERRORS = u"""
 2:5:Call with wrong number of arguments (expected at most 4, got 5)
 """
index b8452b6686ce99f6164ba947b2abb5cafa5f0c1d..bfa60b0a77d8d9fdb8b36fc641d6e3fe3f5b7ce5 100644 (file)
@@ -1,7 +1,7 @@
 cimport e_pxdimpl_imported
 
-_ERRORS = """
-6:4: function definition not allowed here
+_ERRORS = u"""
+6:4:  function definition not allowed here
 18:4: function definition not allowed here
 23:8: function definition not allowed here
 """
index c8a508a72b5998077b3b9220ef7d4b8c88da1a97..89968d7605a66c392287729221083ffee3f7bd63 100644 (file)
@@ -2,7 +2,7 @@ cdef int c1 = "t"     # works
 cdef int c2 = "te"    # fails
 cdef int cx = "test"  # fails
 
-_ERRORS = """
+_ERRORS = u"""
 2:14: Only coerce single-character ascii strings can be used as ints.
 3:14: Only coerce single-character ascii strings can be used as ints.
 """
index 9d0b4453d1b8f5da6ddfeb8e1a901edf85944a65..f75d17829c523657f26cd080e5e85f88f0aeb649 100644 (file)
@@ -7,6 +7,6 @@ elif x == 2:
 elif x == 4:
     print 34
 
-_ERRORS = """
+_ERRORS = u"""
 3:19: undeclared name not builtin: NONEXISTING
 """
index d0c7fbe5f004f24f7f5c2a581c3db5688e7ccfd3..4460cf5cd49d3707841ff003af60956a08236b49 100644 (file)
@@ -4,6 +4,6 @@
 Tr\8fs bien. 
 """
 
-_ERRORS = """
+_ERRORS = u"""
 0:0:Decoding error, missing or incorrect coding=<encoding-name> at top of source ('ascii' codec can't decode byte 0x8f in position 22: ordinal not in range(128))
 """
index f4c8a36ba389a8ef089b0c5932e56be8d2c1e91e..850036bb011c03bd0274abcafb0abec417cfa7eb 100644 (file)
@@ -1,5 +1,5 @@
 from __future__ import braces
 
-_ERRORS = """
+_ERRORS = u"""
 1:23: not a chance
 """
index 840ed344c0b6a7e82ac8b1562d33e9f7c41c89f8..3bce8b0273b9fea7be784c6de6ef3df8c013641e 100644 (file)
@@ -1,6 +1,6 @@
 def f():
     a = <foao>True
 
-_ERRORS = """
+_ERRORS = u"""
 2:9: 'foao' is not a type identifier
-"""
\ No newline at end of file
+"""
index 4258f4b50e7464efb98d08216a8e4e6ba57aa273..a18645ffb17681e677e9e0003335ade9b79167d0 100644 (file)
@@ -3,7 +3,7 @@ i = _this_global_name_does_not_exist_
 def test(i):
     return _this_local_name_does_not_exist_
 
-_ERRORS = """
+_ERRORS = u"""
 1:37:undeclared name not builtin: _this_global_name_does_not_exist_
 4:43:undeclared name not builtin: _this_local_name_does_not_exist_
 """
index 23717f1c4f11b18342a401876f4fb2461a6f2619..7736ae92b86430b91992fdae65ee4ab0b941c793 100644 (file)
@@ -1,6 +1,6 @@
 cdef extern from *:
     void foo(void)
 
-_ERRORS = """
+_ERRORS = u"""
 2:13:Use spam() rather than spam(void) to declare a function with no arguments.
 """