~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Aaron Bentley
  • Date: 2007-08-07 23:59:24 UTC
  • mto: This revision was merged to the branch mainline in revision 2703.
  • Revision ID: aaron.bentley@utoronto.ca-20070807235924-u6a2as6t2h2qwlck
Remove my implementation of has_same_location

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
        assert response[0] in ('yes', 'no'), 'unexpected response code %s' % (response,)
349
349
        return response[0] == 'yes'
350
350
 
351
 
    def has_same_location(self, other_repository):
352
 
        self._ensure_real()
353
 
        return self._real_repository.has_same_location(other_repository)
354
 
 
355
351
    def lock_read(self):
356
352
        # wrong eventually - want a local lock cache context
357
353
        if not self._lock_mode: