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

  • Committer: Martin Pool
  • Date: 2009-11-26 01:42:06 UTC
  • mfrom: (4827 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4828.
  • Revision ID: mbp@sourcefrog.net-20091126014206-qvf8jfpwpro558r4
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
635
635
 
636
636
    def _is_executable_from_path_and_stat_from_basis(self, path, stat_result):
637
637
        file_id = self.path2id(path)
 
638
        if file_id is None:
 
639
            # For unversioned files on win32, we just assume they are not
 
640
            # executable
 
641
            return False
638
642
        return self._inventory[file_id].executable
639
643
 
640
644
    def _is_executable_from_path_and_stat_from_stat(self, path, stat_result):
2582
2586
        """
2583
2587
        return
2584
2588
 
2585
 
    @needs_read_lock
2586
2589
    def _get_rules_searcher(self, default_searcher):
2587
2590
        """See Tree._get_rules_searcher."""
2588
2591
        if self._rules_searcher is None: