~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-09 04:32:41 UTC
  • mfrom: (5414.1.1 deprecation)
  • Revision ID: pqm@pqm.ubuntu.com-20100909043241-7ya6s3ghs5c1ijxk
(mbp) Deprecate casting PushResult and PullResult to int to get the relative
 revno change (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3103
3103
    :ivar tag_conflicts: A list of tag conflicts, see BasicTags.merge_to
3104
3104
    """
3105
3105
 
 
3106
    @deprecated_method(deprecated_in((2, 3, 0)))
3106
3107
    def __int__(self):
3107
 
        # DEPRECATED: pull used to return the change in revno
 
3108
        """Return the relative change in revno.
 
3109
 
 
3110
        :deprecated: Use `new_revno` and `old_revno` instead.
 
3111
        """
3108
3112
        return self.new_revno - self.old_revno
3109
3113
 
3110
3114
    def report(self, to_file):
3135
3139
        target, otherwise it will be None.
3136
3140
    """
3137
3141
 
 
3142
    @deprecated_method(deprecated_in((2, 3, 0)))
3138
3143
    def __int__(self):
3139
 
        # DEPRECATED: push used to return the change in revno
 
3144
        """Return the relative change in revno.
 
3145
 
 
3146
        :deprecated: Use `new_revno` and `old_revno` instead.
 
3147
        """
3140
3148
        return self.new_revno - self.old_revno
3141
3149
 
3142
3150
    def report(self, to_file):