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

  • Committer: Andrew Bennetts
  • Date: 2007-02-28 12:22:51 UTC
  • mto: (2018.5.80 hpss)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070228122251-49u5cagwiyvxqqjc
Make a couple more branch_implementations tests pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
800
800
        self._real_branch.pull(
801
801
            source, overwrite=overwrite, stop_revision=stop_revision)
802
802
 
 
803
    @needs_read_lock
 
804
    def push(self, target, overwrite=False, stop_revision=None):
 
805
        self._ensure_real()
 
806
        self._real_branch.push(
 
807
            target, overwrite=overwrite, stop_revision=stop_revision)
 
808
 
 
809
    def is_locked(self):
 
810
        return self._lock_count >= 1
 
811
 
803
812
 
804
813
class RemoteWorkingTree(object):
805
814