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

  • Committer: Andrew Bennetts
  • Date: 2007-04-16 06:53:00 UTC
  • mto: (2018.18.15 hpss-faster-copy)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070416065300-8te6vwujl287yh5p
Remove unnecessary trivial divergences from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
241
241
        return result
242
242
 
243
243
 
244
 
# XXX: TODO: Create a SmartServerRequestHandler which will take the responsibility
245
 
# for delivering the data for a request. This could be done with as the
246
 
# StreamServer, though that would create conflation between request and response
247
 
# which may be undesirable.
248
 
 
249
 
 
250
244
class SmartClientRequestProtocolOne(SmartProtocolBase):
251
245
    """The client-side protocol for smart version 1."""
252
246