/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/workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-04 01:31:43 UTC
  • mfrom: (7058.6.5 memorytree-symlinks)
  • mto: This revision was merged to the branch mainline in revision 7318.
  • Revision ID: jelmer@jelmer.uk-20190304013143-7euyjbmanwo3tpmn
More improvements, add tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
from .trace import mutter, note
66
66
 
67
67
 
68
 
ERROR_PATH_NOT_FOUND = 3    # WindowsError errno code, equivalent to ENOENT
69
 
 
70
 
 
71
68
class SettingFileIdUnsupported(errors.BzrError):
72
69
 
73
70
    _fmt = "This format does not support setting file ids."
123
120
    def control_transport(self):
124
121
        return self._transport
125
122
 
 
123
    def supports_symlinks(self):
 
124
        return osutils.supports_symlinks(self.basedir)
 
125
 
126
126
    def is_control_filename(self, filename):
127
127
        """True if filename is the name of a control file in this tree.
128
128