~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

Stub out RemoteRepository.gather_stats while its implemented in parallel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
        assert response[0] in ('ok', 'no'), 'unexpected response code %s' % (response,)
204
204
        return response[0] == 'ok'
205
205
 
 
206
    def gather_stats(self, revid, committers=None):
 
207
        """See Repository.gather_stats()."""
 
208
        # SMART_SERVER_MERGE_BLOCKER
 
209
        return self._real_repository.gather_stats(revid, committers)
 
210
 
206
211
    def get_physical_lock_status(self):
207
212
        """See Repository.get_physical_lock_status()."""
208
213
        return False