/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: Canonical.com Patch Queue Manager
  • Date: 2007-04-13 17:41:00 UTC
  • mfrom: (2417.1.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070413174100-zpfqleaf5ph9ycx4
(Dmitry Vasiliev) Fix win32 executable checks for unknown files and _iter_changes with WT3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1601
1601
            mode = stat_value.st_mode
1602
1602
            kind = osutils.file_kind_from_stat_mode(mode)
1603
1603
            if not supports_executable():
1604
 
                executable = entry.executable
 
1604
                executable = entry is not None and entry.executable
1605
1605
            else:
1606
1606
                executable = bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
1607
1607
        return kind, executable, stat_value