~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-16 13:39:39 UTC
  • mto: (5923.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5925.
  • Revision ID: jelmer@samba.org-20110516133939-8u1pc9utas3uw1lt
Require a unicode prompt to be passed into all methods that prompt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1081
1081
    def find_text_key_references(self):
1082
1082
        """Find the text key references within the repository.
1083
1083
 
 
1084
        :return: a dictionary mapping (file_id, revision_id) tuples to altered file-ids to an iterable of
 
1085
        revision_ids. Each altered file-ids has the exact revision_ids that
 
1086
        altered it listed explicitly.
1084
1087
        :return: A dictionary mapping text keys ((fileid, revision_id) tuples)
1085
1088
            to whether they were referred to by the inventory of the
1086
1089
            revision_id that they contain. The inventory texts from all present
2992
2995
            _override_hook_target=self, **kwargs)
2993
2996
 
2994
2997
    @needs_read_lock
2995
 
    def push(self, target, overwrite=False, stop_revision=None, lossy=False):
 
2998
    def push(self, target, overwrite=False, stop_revision=None):
2996
2999
        self._ensure_real()
2997
3000
        return self._real_branch.push(
2998
 
            target, overwrite=overwrite, stop_revision=stop_revision, lossy=lossy,
 
3001
            target, overwrite=overwrite, stop_revision=stop_revision,
2999
3002
            _override_hook_source_branch=self)
3000
3003
 
3001
3004
    def is_locked(self):