~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Patch Queue Manager
  • Date: 2012-03-14 14:39:16 UTC
  • mfrom: (6027.1.18 deprecations)
  • Revision ID: pqm@pqm.ubuntu.com-20120314143916-dggf9d1d26j3kizq
(vila) Remove some code deprecated in series older than 2.4 (inclusive)
 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1617
1617
    def __ne__(self, other):
1618
1618
        return not (self == other)
1619
1619
 
1620
 
    @classmethod
1621
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1622
 
    def get_default_format(klass):
1623
 
        """Return the current default format."""
1624
 
        return format_registry.get_default()
1625
 
 
1626
 
    @classmethod
1627
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1628
 
    def get_formats(klass):
1629
 
        """Get all the known formats.
1630
 
 
1631
 
        Warning: This triggers a load of all lazy registered formats: do not
1632
 
        use except when that is desireed.
1633
 
        """
1634
 
        return format_registry._get_all()
1635
 
 
1636
1620
    def get_reference(self, controldir, name=None):
1637
1621
        """Get the target reference of the branch in controldir.
1638
1622
 
1726
1710
        """
1727
1711
        raise NotImplementedError(self.open)
1728
1712
 
1729
 
    @classmethod
1730
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1731
 
    def register_format(klass, format):
1732
 
        """Register a metadir format.
1733
 
 
1734
 
        See MetaDirBranchFormatFactory for the ability to register a format
1735
 
        without loading the code the format needs until it is actually used.
1736
 
        """
1737
 
        format_registry.register(format)
1738
 
 
1739
 
    @classmethod
1740
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1741
 
    def set_default_format(klass, format):
1742
 
        format_registry.set_default(format)
1743
 
 
1744
1713
    def supports_set_append_revisions_only(self):
1745
1714
        """True if this format supports set_append_revisions_only."""
1746
1715
        return False
3147
3116
    :ivar tag_updates: A dict with new tags, see BasicTags.merge_to
3148
3117
    """
3149
3118
 
3150
 
    @deprecated_method(deprecated_in((2, 3, 0)))
3151
 
    def __int__(self):
3152
 
        """Return the relative change in revno.
3153
 
 
3154
 
        :deprecated: Use `new_revno` and `old_revno` instead.
3155
 
        """
3156
 
        return self.new_revno - self.old_revno
3157
 
 
3158
3119
    def report(self, to_file):
3159
3120
        tag_conflicts = getattr(self, "tag_conflicts", None)
3160
3121
        tag_updates = getattr(self, "tag_updates", None)
3190
3151
        target, otherwise it will be None.
3191
3152
    """
3192
3153
 
3193
 
    @deprecated_method(deprecated_in((2, 3, 0)))
3194
 
    def __int__(self):
3195
 
        """Return the relative change in revno.
3196
 
 
3197
 
        :deprecated: Use `new_revno` and `old_revno` instead.
3198
 
        """
3199
 
        return self.new_revno - self.old_revno
3200
 
 
3201
3154
    def report(self, to_file):
3202
3155
        # TODO: This function gets passed a to_file, but then
3203
3156
        # ignores it and calls note() instead. This is also