@@ -195,7 +195,7 @@ def __getitem__(self, i): return self.seq[i]
195195
196196 # Non surrogate above surrogate value, fixup required
197197 def test_lecmp (s , s2 ):
198- verify (s < s2 , "comparison failed on %s < %s" % (s , s2 ))
198+ verify (s < s2 , "comparison failed on %s < %s" % (s , s2 ))
199199
200200 def test_fixup (s ):
201201 s2 = u'\ud800 \udc01 '
@@ -372,11 +372,11 @@ def test_fixup(s):
372372verify (u'\ud84d \udc56 ' .encode ('utf-8' ) == \
373373 '' .join ((chr (0xf0 ), chr (0xa3 ), chr (0x91 ), chr (0x96 ))) )
374374# UTF-8 specific decoding tests
375- verify (unicode ('' .join ((chr (0xf0 ), chr (0xa3 ), chr (0x91 ), chr (0x96 ))),
375+ verify (unicode ('' .join ((chr (0xf0 ), chr (0xa3 ), chr (0x91 ), chr (0x96 ))),
376376 'utf-8' ) == u'\ud84d \udc56 ' )
377- verify (unicode ('' .join ((chr (0xf0 ), chr (0x90 ), chr (0x80 ), chr (0x82 ))),
377+ verify (unicode ('' .join ((chr (0xf0 ), chr (0x90 ), chr (0x80 ), chr (0x82 ))),
378378 'utf-8' ) == u'\ud800 \udc02 ' )
379- verify (unicode ('' .join ((chr (0xe2 ), chr (0x82 ), chr (0xac ))),
379+ verify (unicode ('' .join ((chr (0xe2 ), chr (0x82 ), chr (0xac ))),
380380 'utf-8' ) == u'\u20ac ' )
381381
382382# Other possible utf-8 test cases:
@@ -501,15 +501,15 @@ def __str__(self):
501501 'cp852' , 'cp855' , 'cp860' , 'cp861' , 'cp862' ,
502502 'cp863' , 'cp865' , 'cp866' ,
503503 'iso8859_10' , 'iso8859_13' , 'iso8859_14' , 'iso8859_15' ,
504- 'iso8859_2' , 'iso8859_4' , 'iso8859_5' ,
504+ 'iso8859_2' , 'iso8859_4' , 'iso8859_5' ,
505505 'iso8859_9' , 'koi8_r' , 'latin_1' ,
506506 'mac_cyrillic' , 'mac_latin2' ,
507507
508508 ### These have undefined mappings:
509509 #'cp1250', 'cp1251', 'cp1252', 'cp1253', 'cp1254', 'cp1255',
510510 #'cp1256', 'cp1257', 'cp1258',
511511 #'cp424', 'cp856', 'cp857', 'cp864', 'cp869', 'cp874',
512- #'iso8859_3', 'iso8859_6', 'iso8859_7',
512+ #'iso8859_3', 'iso8859_6', 'iso8859_7',
513513 #'mac_greek', 'mac_iceland','mac_roman', 'mac_turkish',
514514
515515 ### These fail the round-trip:
0 commit comments