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

  • Committer: Vincent Ladeuil
  • Date: 2019-03-06 14:03:19 UTC
  • mfrom: (7290.1.15 work)
  • mto: This revision was merged to the branch mainline in revision 7295.
  • Revision ID: v.ladeuil+brz@free.fr-20190306140319-zgjegynpjv3vv0jg
Merge 3.0 into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
    def kind(self, p):
259
259
        stat_value = self._file_transport.stat(p)
260
260
        return osutils.file_kind_from_stat_mode(stat_value.st_mode)
 
261
 
 
262
    def get_symlink_target(self, path):
 
263
        with self.lock_read():
 
264
            return self._file_transport.readlink(path)