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

  • Committer: Daniel Watkins
  • Date: 2007-11-06 09:33:05 UTC
  • mfrom: (2967 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2993.
  • Revision ID: d.m.watkins@warwick.ac.uk-20071106093305-zfef3c0jbcvunnuz
Merged bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
        return other.args == self.args and other.body == self.body
94
94
 
95
95
    def __repr__(self):
96
 
        return "<SmartServerResponse args=%r body=%r>" % (self.is_successful(), 
 
96
        return "<SmartServerResponse args=%r body=%r>" % (
97
97
            self.args, self.body)
98
98
 
99
99
 
306
306
                               'bzrlib.smart.repository',
307
307
                               'SmartServerRepositoryGatherStats')
308
308
request_handlers.register_lazy(
 
309
    'Repository.stream_knit_data_for_revisions', 'bzrlib.smart.repository',
 
310
    'SmartServerRepositoryStreamKnitDataForRevisions')
 
311
request_handlers.register_lazy(
309
312
    'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
310
313
request_handlers.register_lazy(
311
314
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')