/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

merge bzr.dev r3998

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
 
231
231
    def needs_format_conversion(self, format=None):
232
232
        """Upgrading of remote bzrdirs is not supported yet."""
 
233
        if format is None:
 
234
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
235
                % 'needs_format_conversion(format=None)')
233
236
        return False
234
237
 
235
238
    def clone(self, url, revision_id=None, force_new_repo=False,
1284
1287
        # will try to assign to self.tags, which is a property in this subclass.
1285
1288
        # And the parent's __init__ doesn't do much anyway.
1286
1289
        self._revision_id_to_revno_cache = None
 
1290
        self._partial_revision_id_to_revno_cache = {}
1287
1291
        self._revision_history_cache = None
1288
1292
        self._last_revision_info_cache = None
 
1293
        self._merge_sorted_revisions_cache = None
1289
1294
        self.bzrdir = remote_bzrdir
1290
1295
        if _client is not None:
1291
1296
            self._client = _client