/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 breezy/memorytree.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-05 07:32:38 UTC
  • mto: (7290.1.21 work)
  • mto: This revision was merged to the branch mainline in revision 7311.
  • Revision ID: jelmer@jelmer.uk-20190305073238-zlqn981opwnqsmzi
Add appveyor configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
See MemoryTree for more details.
20
20
"""
21
21
 
 
22
from __future__ import absolute_import
 
23
 
22
24
import os
23
25
import stat
24
26
 
49
51
        self._locks = 0
50
52
        self._lock_mode = None
51
53
 
52
 
    def supports_symlinks(self):
53
 
        return True
54
 
 
55
 
    def supports_tree_reference(self):
56
 
        return False
57
 
 
58
54
    def get_config_stack(self):
59
55
        return self.branch.get_config_stack()
60
56
 
107
103
        stream = self._file_transport.get(path)
108
104
        return sha_file(stream)
109
105
 
 
106
    def get_root_id(self):
 
107
        return self.path2id('')
 
108
 
110
109
    def _comparison_data(self, entry, path):
111
110
        """See Tree._comparison_data."""
112
111
        if entry is None: