/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/smart/message.py

merge trailing whitespace removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
    def headers_received(self, headers):
38
38
        """Called when message headers are received.
39
 
        
 
39
 
40
40
        This default implementation just stores them in self.headers.
41
41
        """
42
42
        self.headers = headers
67
67
 
68
68
    def protocol_error(self, exception):
69
69
        """Called when there is a protocol decoding error.
70
 
        
 
70
 
71
71
        The default implementation just re-raises the exception.
72
72
        """
73
73
        raise
74
 
    
 
74
 
75
75
    def end_received(self):
76
76
        """Called when the end of the message is received."""
77
77
        # No-op by default.
131
131
 
132
132
    def read_response_tuple(self, expect_body=False):
133
133
        """Reads and returns the response tuple for the current request.
134
 
        
 
134
 
135
135
        :keyword expect_body: a boolean indicating if a body is expected in the
136
136
            response.  Some protocol versions needs this information to know
137
137
            when a response is finished.  If False, read_body_bytes should
252
252
        self.finished_reading = True
253
253
        self._medium_request.finished_reading()
254
254
        raise
255
 
        
 
255
 
256
256
    def read_response_tuple(self, expect_body=False):
257
257
        """Read a response tuple from the wire."""
258
258
        self._wait_for_response_args()
267
267
 
268
268
    def read_body_bytes(self, count=-1):
269
269
        """Read bytes from the body, decoding into a byte stream.
270
 
        
271
 
        We read all bytes at once to ensure we've checked the trailer for 
 
270
 
 
271
        We read all bytes at once to ensure we've checked the trailer for
272
272
        errors, and then feed the buffer back as read_body_bytes is called.
273
273
 
274
274
        Like the builtin file.read in Python, a count of -1 (the default) means