test fix
authorStefan Behnel <scoder@users.berlios.de>
Sat, 10 Oct 2009 09:46:54 +0000 (11:46 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 10 Oct 2009 09:46:54 +0000 (11:46 +0200)
tests/errors/nogil.pyx
tests/run/__getattribute__.pyx
tests/run/r_docstrings.pyx

index d6c3c6d048cc4301466992e67177518829fc4f87..f0c5dfa318ca131d1b45dc352771a86362a41aad 100644 (file)
@@ -96,10 +96,14 @@ _ERRORS = u"""
 28:16: Constructing complex number not allowed without gil
 29:12: Accessing Python global or builtin not allowed without gil
 30:8: Backquote expression not allowed without gil
+30:9: Operation not allowed without gil
 31:15: Assignment of Python object not allowed without gil
+31:15: Operation not allowed without gil
 31:15: Python import not allowed without gil
+32:8: Operation not allowed without gil
 32:13: Python import not allowed without gil
 32:25: Constructing Python list not allowed without gil
+32:25: Operation not allowed without gil
 33:17: Iterating over Python object not allowed without gil
 35:11: Indexing Python object not allowed without gil
 36:11: Slicing Python object not allowed without gil
index da4c1772083c5411476193e7379bdc9cbebb8a45..ea71bc2c920d240fee5cf28c4e9cd57ac55d06b7 100644 (file)
@@ -29,7 +29,7 @@ __getattribute__ and __getattr__ special methods for a single class.
 
 cdef class just_getattribute:
     def __getattribute__(self,n):
-        if n == u'bar':
+        if n == 'bar':
             return n
         else:
             raise AttributeError
@@ -39,7 +39,7 @@ cdef class just_getattr:
     def __init__(self):
         self.foo = 10
     def __getattr__(self,n):
-        if n == u'bar':
+        if n == 'bar':
             return n
         else:
             raise AttributeError
@@ -49,12 +49,12 @@ cdef class both:
     def __init__(self):
         self.foo = 10
     def __getattribute__(self,n):
-        if n == u'foo':
+        if n == 'foo':
             return self.foo
         else:
             raise AttributeError
     def __getattr__(self,n):
-        if n == u'bar':
+        if n == 'bar':
             return n
         else:
             raise AttributeError
index 7d01f3962b126fdb0a5d6119896f9af3792b3496..9d55d5c27e4f4f59b25af7ba444f0b105aadad5f 100644 (file)
@@ -13,9 +13,9 @@ doctest = u"""# Python 3 gets all of these right ...
     'This is a function docstring.'
 
     >>> C.__doc__
-    u'This is a class docstring.'
+    'This is a class docstring.'
     >>> CS.__doc__
-    u'This is a subclass docstring.'
+    'This is a subclass docstring.'
     >>> print(CSS.__doc__)
     None