cleanup
authorStefan Behnel <scoder@users.berlios.de>
Sun, 18 Apr 2010 11:39:47 +0000 (13:39 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 18 Apr 2010 11:39:47 +0000 (13:39 +0200)
tests/run/unicodemethods.pyx

index c6aa8f6e5742e89cc4b482b4ec4d2970571c41d7..743366595fdb7dd7742630177349adabeb501c07 100644 (file)
@@ -290,12 +290,12 @@ def endswith(unicode s, sub):
 
     >>> PY_VERSION < (2,5) or text.endswith(('fsdf', 'fsdf '))
     True
-    >>> endswith(text, ('fsdf', 'fsdf ')) == 'MATCH'
-    True
+    >>> endswith(text, ('fsdf', 'fsdf '))
+    'MATCH'
     >>> PY_VERSION < (2,5) or not text.endswith(('fsdf', 'fsdf X'))
     True
-    >>> endswith(text, ('fsdf', 'fsdf X')) == 'NO MATCH'
-    True
+    >>> endswith(text, ('fsdf', 'fsdf X'))
+    'NO MATCH'
     """
     if s.endswith(sub):
         return 'MATCH'
@@ -321,12 +321,12 @@ def endswith_start_end(unicode s, sub, start, end):
 
     >>> PY_VERSION < (2,5) or text.endswith(('fsd', 'fsdf'), 10, len(text)-1)
     True
-    >>> endswith_start_end(text, ('fsd', 'fsdf'), 10, len(text)-1) == 'MATCH'
-    True
+    >>> endswith_start_end(text, ('fsd', 'fsdf'), 10, len(text)-1)
+    'MATCH'
     >>> PY_VERSION < (2,5) or not text.endswith(('fsdf ', 'fsdf X'), 10, len(text)-1)
     True
-    >>> endswith_start_end(text, ('fsdf ', 'fsdf X'), 10, len(text)-1) == 'NO MATCH'
-    True
+    >>> endswith_start_end(text, ('fsdf ', 'fsdf X'), 10, len(text)-1)
+    'NO MATCH'
     """
     if s.endswith(sub, start, end):
         return 'MATCH'