Show
Ignore:
Timestamp:
18/12/09 17:17:30 (2 years ago)
Author:
Menno Smits <menno@…>
Branch:
default
Message:

use double quotes instead of single quotes in triple-quoted strings to keep Emacs happy

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • imapclient/test/test_FetchParser.py

    r87 r90  
    33# Please see http://en.wikipedia.org/wiki/BSD_licenses 
    44 
    5 ''' 
     5""" 
    66Unit tests for the FetchTokeniser and FetchParser classes 
    7 ''' 
     7""" 
    88 
    99import unittest 
     
    9494 
    9595    def testCharacterCase(self): 
    96         '''Test handling of varied case in the response type name 
    97         ''' 
     96        """Test handling of varied case in the response type name 
     97        """ 
    9898        self._parse_test( 
    9999            [r'2 (flaGS (\Deleted Foo \Seen))'], 
     
    131131 
    132132    def testMultipleTypes(self): 
    133         '''Test multiple response types''' 
     133        """Test multiple response types""" 
    134134        self._parse_test( 
    135135            [r'2 (FLAGS (\Deleted Foo \Seen) INTERNALDATE " 9-Feb-2007 17:08:08 +0000")'], 
     
    144144 
    145145    def testMultipleMessages(self): 
    146         '''Test with multple messages in the response 
    147         ''' 
     146        """Test with multple messages in the response 
     147        """ 
    148148        self._parse_test( 
    149149            [ 
     
    158158 
    159159    def testLiteral(self): 
    160         '''Test literal handling 
    161         ''' 
     160        """Test literal handling 
     161        """ 
    162162        self._parse_test( 
    163163            [('1 (RFC822 {21}', 'Subject: test\r\n\r\nbody'), ')'], 
     
    212212 
    213213    def testUID(self): 
    214         '''Test UID handling. The UID is returned instead of the given message 
     214        """Test UID handling. The UID is returned instead of the given message 
    215215        ID if present. 
    216         ''' 
     216        """ 
    217217        self._parse_test( 
    218218            ['1 (UID 8)'],