/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/transport/smart/protocol.py

Move SmartServerResponse to smart/request.py, untangling more import dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
        return result
237
237
 
238
238
 
239
 
class SmartServerResponse(object):
240
 
    """Response generated by SmartServerRequestHandler."""
241
 
 
242
 
    def __init__(self, args, body=None):
243
 
        self.args = args
244
 
        self.body = body
245
 
 
246
239
# XXX: TODO: Create a SmartServerRequestHandler which will take the responsibility
247
240
# for delivering the data for a request. This could be done with as the
248
241
# StreamServer, though that would create conflation between request and response