~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

(jelmer) Add RepositoryFormat.is_deprecated(). (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2733
2733
        return result
2734
2734
 
2735
2735
    def _warn_if_deprecated(self, branch=None):
 
2736
        if not self._format.is_deprecated():
 
2737
            return
2736
2738
        global _deprecation_warning_done
2737
2739
        if _deprecation_warning_done:
2738
2740
            return
3118
3120
        """
3119
3121
        return True
3120
3122
 
 
3123
    def is_deprecated(self):
 
3124
        """Is this format deprecated?
 
3125
 
 
3126
        Deprecated formats may trigger a user-visible warning recommending
 
3127
        the user to upgrade. They are still fully supported.
 
3128
        """
 
3129
        return False
 
3130
 
3121
3131
    def network_name(self):
3122
3132
        """A simple byte string uniquely identifying this format for RPC calls.
3123
3133