@@ -20,24 +20,24 @@ def test_triple_quote_strings_are_also_strings(self):
2020
2121 def test_triple_single_quotes_work_too (self ):
2222 string = '''Bonjour tout le monde!'''
23- self .assertEqual (__ , isinstance (string , basestring ))
23+ self .assertEqual (True , isinstance (string , basestring ))
2424
2525 def test_raw_strings_are_also_strings (self ):
2626 string = r"Konnichi wa, world!"
27- self .assertEqual (__ , isinstance (string , basestring ))
27+ self .assertEqual (True , isinstance (string , basestring ))
2828
2929 def test_use_single_quotes_to_create_string_with_double_quotes (self ):
3030 string = 'He said, "Go Away."'
31- self .assertEqual (__ , string )
31+ self .assertEqual ('He said, "Go Away."' , string )
3232
3333 def test_use_double_quotes_to_create_strings_with_single_quotes (self ):
3434 string = "Don't"
35- self .assertEqual (__ , string )
35+ self .assertEqual ("Don't" , string )
3636
3737 def test_use_backslash_for_escaping_quotes_in_strings (self ):
3838 a = "He said, \" Don't\" "
3939 b = 'He said, "Don\' t"'
40- self .assertEqual (__ , (a == b ))
40+ self .assertEqual (True , (a == b ))
4141
4242 def test_use_backslash_at_the_end_of_a_line_to_continue_onto_the_next_line (self ):
4343 string = "It was the best of times,\n \
0 commit comments